corvic-engine 0.3.0rc63__cp38-abi3-win_amd64.whl → 0.3.0rc65__cp38-abi3-win_amd64.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.
@@ -1,4 +1,4 @@
1
1
  # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
2
  """Client and server classes corresponding to protobuf-defined services."""
3
-
4
3
  import grpc
4
+
@@ -1,7 +1,7 @@
1
1
  """
2
2
  @generated by mypy-protobuf. Do not edit manually!
3
3
  isort:skip_file
4
- Copyright 2023 Buf Technologies, Inc.
4
+ Copyright 2023-2025 Buf Technologies, Inc.
5
5
 
6
6
  Licensed under the Apache License, Version 2.0 (the "License");
7
7
  you may not use this file except in compliance with the License.
@@ -15,20 +15,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
15
  See the License for the specific language governing permissions and
16
16
  limitations under the License.
17
17
  """
18
-
19
18
  import abc
20
19
  import collections.abc
21
- import typing
22
-
23
20
  import grpc
24
21
  import grpc.aio
22
+ import typing
23
+
24
+ _T = typing.TypeVar('_T')
25
25
 
26
- _T = typing.TypeVar("_T")
26
+ class _MaybeAsyncIterator(collections.abc.AsyncIterator[_T], collections.abc.Iterator[_T], metaclass=abc.ABCMeta):
27
+ ...
27
28
 
28
- class _MaybeAsyncIterator(
29
- collections.abc.AsyncIterator[_T],
30
- collections.abc.Iterator[_T],
31
- metaclass=abc.ABCMeta,
32
- ): ...
33
29
  class _ServicerContext(grpc.ServicerContext, grpc.aio.ServicerContext): # type: ignore
34
30
  ...
corvic/engine/_native.pyd CHANGED
Binary file
@@ -118,8 +118,11 @@ def _make_compare_to_literal(
118
118
  )
119
119
 
120
120
 
121
+ LiteralType = struct_pb2.Value | float | str | bool
122
+
123
+
121
124
  def eq(
122
- column_name: str, literal: struct_pb2.Value | float | str | bool, dtype: pa.DataType
125
+ column_name: str, literal: LiteralType | None, dtype: pa.DataType
123
126
  ) -> CompareColumnToLiteral:
124
127
  """Include rows where column is equal to a literal."""
125
128
  return _make_compare_to_literal(
@@ -128,7 +131,7 @@ def eq(
128
131
 
129
132
 
130
133
  def ne(
131
- column_name: str, literal: struct_pb2.Value | float | str | bool, dtype: pa.DataType
134
+ column_name: str, literal: LiteralType | None, dtype: pa.DataType
132
135
  ) -> CompareColumnToLiteral:
133
136
  """Include rows where column is not equal to a literal."""
134
137
  return _make_compare_to_literal(
@@ -137,7 +140,7 @@ def ne(
137
140
 
138
141
 
139
142
  def lt(
140
- column_name: str, literal: struct_pb2.Value | float | str | bool, dtype: pa.DataType
143
+ column_name: str, literal: LiteralType, dtype: pa.DataType
141
144
  ) -> CompareColumnToLiteral:
142
145
  """Include rows where column is less than to a literal."""
143
146
  return _make_compare_to_literal(
@@ -146,7 +149,7 @@ def lt(
146
149
 
147
150
 
148
151
  def gt(
149
- column_name: str, literal: struct_pb2.Value | float | str | bool, dtype: pa.DataType
152
+ column_name: str, literal: LiteralType, dtype: pa.DataType
150
153
  ) -> CompareColumnToLiteral:
151
154
  """Include rows where column is greater than to a literal."""
152
155
  return _make_compare_to_literal(
@@ -155,7 +158,7 @@ def gt(
155
158
 
156
159
 
157
160
  def le(
158
- column_name: str, literal: struct_pb2.Value | float | str | bool, dtype: pa.DataType
161
+ column_name: str, literal: LiteralType, dtype: pa.DataType
159
162
  ) -> CompareColumnToLiteral:
160
163
  """Include rows where column is less than or equal to than a literal."""
161
164
  return _make_compare_to_literal(
@@ -164,7 +167,7 @@ def le(
164
167
 
165
168
 
166
169
  def ge(
167
- column_name: str, literal: struct_pb2.Value | float | str | bool, dtype: pa.DataType
170
+ column_name: str, literal: LiteralType, dtype: pa.DataType
168
171
  ) -> CompareColumnToLiteral:
169
172
  """Include rows where column is greater than or equal to to a literal."""
170
173
  return _make_compare_to_literal(
@@ -467,24 +467,39 @@ class InMemoryExecutor(OpGraphExecutor):
467
467
  # not pl.PythonLiterals (e.g., struct, map) which means
468
468
  # the below can fail at runtime with a cryptic error.
469
469
  lit = cast(Any, row_filter.literal_as_py)
470
- match row_filter.comparison_type:
471
- case table_pb2.COMPARISON_TYPE_EQ:
472
- comp = pl.col(row_filter.column_name) == lit
473
- case table_pb2.COMPARISON_TYPE_NE:
474
- comp = pl.col(row_filter.column_name) != lit
475
- case table_pb2.COMPARISON_TYPE_LT:
476
- comp = pl.col(row_filter.column_name) < lit
477
- case table_pb2.COMPARISON_TYPE_GT:
478
- comp = pl.col(row_filter.column_name) > lit
479
- case table_pb2.COMPARISON_TYPE_LE:
480
- comp = pl.col(row_filter.column_name) <= lit
481
- case table_pb2.COMPARISON_TYPE_GE:
482
- comp = pl.col(row_filter.column_name) >= lit
483
- case _:
484
- return op_graph.OpParseError(
485
- "unknown comparison type value in row filter",
486
- value=row_filter.comparison_type,
487
- )
470
+ col = row_filter.column_name
471
+
472
+ # Handle comparison with None/null separately
473
+ if lit is None:
474
+ match row_filter.comparison_type:
475
+ case table_pb2.COMPARISON_TYPE_EQ:
476
+ comp = pl.col(col).is_null()
477
+ case table_pb2.COMPARISON_TYPE_NE:
478
+ comp = pl.col(col).is_not_null()
479
+ case _:
480
+ return op_graph.OpParseError(
481
+ "Unsupported literal None and comparison type",
482
+ value=row_filter.comparison_type,
483
+ )
484
+ else:
485
+ match row_filter.comparison_type:
486
+ case table_pb2.COMPARISON_TYPE_EQ:
487
+ comp = pl.col(col) == lit
488
+ case table_pb2.COMPARISON_TYPE_NE:
489
+ comp = pl.col(col) != lit
490
+ case table_pb2.COMPARISON_TYPE_LT:
491
+ comp = pl.col(col) < lit
492
+ case table_pb2.COMPARISON_TYPE_GT:
493
+ comp = pl.col(col) > lit
494
+ case table_pb2.COMPARISON_TYPE_LE:
495
+ comp = pl.col(col) <= lit
496
+ case table_pb2.COMPARISON_TYPE_GE:
497
+ comp = pl.col(col) >= lit
498
+ case _:
499
+ return op_graph.OpParseError(
500
+ "unknown comparison type value in row filter",
501
+ value=row_filter.comparison_type,
502
+ )
488
503
  return Ok(comp)
489
504
 
490
505
  def _row_filter_combination_to_condition(
@@ -104,7 +104,7 @@ class StagingDBMaker(Protocol):
104
104
  class Client(corvic.system.Client):
105
105
  """Client for the sqlite system implementation."""
106
106
 
107
- def __init__(
107
+ def __init__( # noqa: PLR0913
108
108
  self,
109
109
  sqlite_file: pathlib.Path,
110
110
  *,
@@ -115,6 +115,8 @@ class Client(corvic.system.Client):
115
115
  staging_db_maker: StagingDBMaker | None = None,
116
116
  bucket_name: str | None = None,
117
117
  fs_blob_data_dir_name: str | None = None,
118
+ text_embedder: corvic.system.TextEmbedder | None = None,
119
+ image_embedder: corvic.system.ImageEmbedder | None = None,
118
120
  ):
119
121
  sqlite_file_exists = sqlite_file.exists()
120
122
 
@@ -152,8 +154,12 @@ class Client(corvic.system.Client):
152
154
  vector_column_names_to_sizes
153
155
  or corvic.system.DEFAULT_VECTOR_COLUMN_NAMES_TO_SIZES,
154
156
  )
155
- self._text_embedder = corvic.system.RandomTextEmbedder()
156
- self._image_embedder = corvic.system.CombinedImageEmbedder()
157
+ self._text_embedder = (
158
+ text_embedder if text_embedder else corvic.system.RandomTextEmbedder()
159
+ )
160
+ self._image_embedder = (
161
+ image_embedder if image_embedder else corvic.system.CombinedImageEmbedder()
162
+ )
157
163
  self._executor = corvic.system.ValidateFirstExecutor(
158
164
  corvic.system.InMemoryExecutor(
159
165
  self._staging_db,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: corvic-engine
3
- Version: 0.3.0rc63
3
+ Version: 0.3.0rc65
4
4
  Classifier: Environment :: Console
5
5
  Classifier: License :: Other/Proprietary License
6
6
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -1,6 +1,6 @@
1
- corvic_engine-0.3.0rc63.dist-info/METADATA,sha256=VW8Yspw67HgekA9jzUhj0RVaUZGqrDG4HKUADYnSipk,1876
2
- corvic_engine-0.3.0rc63.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
3
- corvic_engine-0.3.0rc63.dist-info/licenses/LICENSE,sha256=DSS1OD0oIgssKOmAzkMRBv5jvvVuZQbrIv8lpl9DXY8,1035
1
+ corvic_engine-0.3.0rc65.dist-info/METADATA,sha256=AyiS5oI8pA-03Rse2EbjAbBmr8fS92HyFpq5lWgviB8,1876
2
+ corvic_engine-0.3.0rc65.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
3
+ corvic_engine-0.3.0rc65.dist-info/licenses/LICENSE,sha256=DSS1OD0oIgssKOmAzkMRBv5jvvVuZQbrIv8lpl9DXY8,1035
4
4
  corvic/context/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  corvic/context/__init__.py,sha256=zBnPiP-tStGSVMG_0-G_0ay6-yIX2aerW_oYRzAex74,1702
6
6
  corvic/embed/node2vec.py,sha256=Qep1lYMKN4nL4z6Ftylr0pj2aJ2LJmWRmnZV27xYJ-M,11251
@@ -33,7 +33,7 @@ corvic/op_graph/feature_types.py,sha256=ZE6onUGW4Xa7tPL4XgRVQ1Tvj5FVJJ66di3ShDTR
33
33
  corvic/op_graph/ops.py,sha256=Ckg5MJXLR6Ek67Vp1SelhQXSQUu7ySIgMsznbxW3UPk,111768
34
34
  corvic/op_graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
35
  corvic/op_graph/row_filters/_jsonlogic.py,sha256=tBd-wOwE6AIx9XEkuSVdBx9iB08nsdHJdvNzEmWzrB0,6432
36
- corvic/op_graph/row_filters/_row_filters.py,sha256=d7oUbB-vThi-Kn5GupGnEwr5UNlsGFgCgR3Q7NR_tkI,9554
36
+ corvic/op_graph/row_filters/_row_filters.py,sha256=p3O7tJbLsy65Vs7shAiDjpdM4RzYA4-fyzwskt15pPk,9469
37
37
  corvic/op_graph/row_filters/__init__.py,sha256=1sibH_kLw7t_9bpRccnEGWqdCiN0VaUh9LMMIMCRyL8,575
38
38
  corvic/op_graph/sample_strategy.py,sha256=DrbtJ3ORkIRfyIE_FdlOh_UMnCW_K9jL1LeonVYb3bU,3007
39
39
  corvic/op_graph/_schema.py,sha256=7Uuun9e6PRrtOeJLsFD8VzkwWeUpbnBcD37NpMKOcmQ,5685
@@ -67,7 +67,7 @@ corvic/sql/parse_ops.py,sha256=7XUqR9LGex4BRyYu0lH3Jrz9W20Zbt-SHDFHpnF4lbQ,29848
67
67
  corvic/sql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
68
  corvic/sql/__init__.py,sha256=kZ1a39KVZ08P8Bg6XuXDLD_dTQX0k620u4nwxZF4SnY,303
69
69
  corvic/system/client.py,sha256=hGhZX8RtHrFEOlOmJNlUHktOZrutOwNYUY_a1htQSrg,821
70
- corvic/system/in_memory_executor.py,sha256=rX2xn8ZrpG3NaXxE9RZJ6NGV7h1bm49cVkjD-Xll_s8,67665
70
+ corvic/system/in_memory_executor.py,sha256=Pe5gVXx3qHDNU1HUZUOqo0l76OVC2WhUei7FpDrADKk,68244
71
71
  corvic/system/op_graph_executor.py,sha256=GK9XGBysIYrl6S1qcgiJTVzmaZsbGsx_EeENOOy1XZM,3511
72
72
  corvic/system/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
73
  corvic/system/staging.py,sha256=K5P5moiuAMfPx7lxK4mArxeURBwKoyB6x9HGu9JJ16E,1846
@@ -78,7 +78,7 @@ corvic/system/_image_embedder.py,sha256=-72L6aVJXzCfKX9iwmBbw_7uuVBYLcO73RCFDkC6
78
78
  corvic/system/_planner.py,sha256=0p0RNxgqQ3-JFhDjWqieiuCj0SlTD6dhYjT79hFyBXU,8062
79
79
  corvic/system/_text_embedder.py,sha256=LH79_4RxhvssySHpkeEoZFgM4Sa5XAYSjoytdsuwWK4,3269
80
80
  corvic/system/__init__.py,sha256=U28LyDwpirtG0WDXqE6dzkx8PipvY2rtZSex03C7xlY,2792
81
- corvic/system_sqlite/client.py,sha256=0ClXmnWL9eZ4ygYqrnVAdsG5XTXU-veXsiWFzE3PU0w,7198
81
+ corvic/system_sqlite/client.py,sha256=NNrcHxCoHPs8piR_-mGEA1KZ2m54OAhHg8DZvI9fWD0,7475
82
82
  corvic/system_sqlite/fs_blob_store.py,sha256=pYTMPiWYC6AUIdcgmRj8lvL7Chg82rf5dac6bKGaqL0,8461
83
83
  corvic/system_sqlite/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
84
  corvic/system_sqlite/rdbms_blob_store.py,sha256=gTP_tQfTVb3wzZkzo8ys1zaz0rSrERzb57rqMHVpuBA,10563
@@ -92,18 +92,10 @@ corvic/version/__init__.py,sha256=JlkRLvKXsu3zIxhdynO_0Ub5NfQOvGjfwCRkNnaOu9U,11
92
92
  corvic/well_known_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
93
  corvic/well_known_types/__init__.py,sha256=GmTxBW8fWK9kL10xGminzOZgeRtQ7wortZ1XDA0xf_c,1281
94
94
  corvic_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
- buf/validate/expression_pb2.py,sha256=begLvN8OZMx7QrIQ21r7aAxfpUxOtVUkX7k4Cp4eCOE,2113
96
- buf/validate/expression_pb2.pyi,sha256=HF8ObPAMN8Y8MOUb6_hLlePDfPJKYHuGnZF7AwYc9wU,1742
97
- buf/validate/expression_pb2_grpc.py,sha256=cNJsetyP40JxpDu8E8I8N_PqrFt8qCuitOocSCJKQv8,163
98
- buf/validate/expression_pb2_grpc.pyi,sha256=lPcfLxLIll3mCpDVSSaKNtCwv-cfz5XG8C2lUg9PFRs,1010
99
- buf/validate/priv/private_pb2.py,sha256=SXgNQuhEdznwVcSMYNw-llpJRxIHsyx9elw8lJmH16E,2094
100
- buf/validate/priv/private_pb2.pyi,sha256=JmqbZr4ItMLAMM1fDStnzZxlw-VyLzwhaMooJhZs_0w,1276
101
- buf/validate/priv/private_pb2_grpc.py,sha256=cNJsetyP40JxpDu8E8I8N_PqrFt8qCuitOocSCJKQv8,163
102
- buf/validate/priv/private_pb2_grpc.pyi,sha256=lPcfLxLIll3mCpDVSSaKNtCwv-cfz5XG8C2lUg9PFRs,1010
103
- buf/validate/validate_pb2.py,sha256=mXG8u-ltz-TQoJvwsfUNhRRSXdP5LX-UyWnjP10FGZs,143893
104
- buf/validate/validate_pb2.pyi,sha256=bn0Y2I2lyeeQQq2uQzUgaBIWHoo1t0DV7n1UciirDeM,26631
105
- buf/validate/validate_pb2_grpc.py,sha256=cNJsetyP40JxpDu8E8I8N_PqrFt8qCuitOocSCJKQv8,163
106
- buf/validate/validate_pb2_grpc.pyi,sha256=lPcfLxLIll3mCpDVSSaKNtCwv-cfz5XG8C2lUg9PFRs,1010
95
+ buf/validate/validate_pb2.py,sha256=zfRfVorNoy8kjf62JAhKk12C22aqAph9nICo6zyU844,151104
96
+ buf/validate/validate_pb2.pyi,sha256=hiRqcuflFtbfnkIN2kpJUBslh62j0lMnARc4oBTWTEM,30863
97
+ buf/validate/validate_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
98
+ buf/validate/validate_pb2_grpc.pyi,sha256=MHyhDbXeXWm8dicOs5WiXAoSPjMmHTZcbXPGwutpkT8,999
107
99
  corvic_generated/algorithm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
100
  corvic_generated/algorithm/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
101
  corvic_generated/algorithm/graph/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -115,14 +107,14 @@ corvic_generated/embedding/v1/models_pb2.py,sha256=uQDda8455N2roSi7gkFED5BqPzjw2
115
107
  corvic_generated/embedding/v1/models_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
116
108
  corvic_generated/feature/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
109
  corvic_generated/feature/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
- corvic_generated/feature/v1/experiment_pb2.py,sha256=-lip76e4EQNoF5PfdAVEAAPOU9AXi0jVL56CMA4Ub4g,13667
110
+ corvic_generated/feature/v1/experiment_pb2.py,sha256=6DnEIJEqD9N-slqfLOPN3t_HYX0NsoDBebW4A3qqd80,13667
119
111
  corvic_generated/feature/v1/experiment_pb2_grpc.py,sha256=B2t03V3SImzl6cZkJefpWXSNJvTVAfuaLNqXqTm62Mo,12346
120
- corvic_generated/feature/v1/space_pb2.py,sha256=s7_QkHupd5MWnfQxrdTrbkKugn3VGZRzOokhCgpzO88,11969
112
+ corvic_generated/feature/v1/space_pb2.py,sha256=UaKTQq8gEcmMm6zbODc3OpS_KbbmAuEVa5uRFtwedOk,11969
121
113
  corvic_generated/feature/v1/space_pb2_grpc.py,sha256=4zW43K2lSvrMRuPrr9Qu6bqcALPkppMJvnwBhp5CgFU,10233
122
114
  corvic_generated/feature/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- corvic_generated/feature/v2/feature_view_pb2.py,sha256=90LzWjeSta0_VmsMxJys4W8ASRtlDGp03XNpLg4vggs,10719
115
+ corvic_generated/feature/v2/feature_view_pb2.py,sha256=TU1vTLPSWSXVEsmXpZm7KT0ey9BhhqYLB_ykNikW2iA,10719
124
116
  corvic_generated/feature/v2/feature_view_pb2_grpc.py,sha256=7cFfkmpQvdsuzPaeMrc0wAv2lyiHzmG6G-nWc8l6VHo,10945
125
- corvic_generated/feature/v2/space_pb2.py,sha256=cW-6yIlexXBkY6loaHkhSBVu9m5VJvmdapGYk8nGel8,20296
117
+ corvic_generated/feature/v2/space_pb2.py,sha256=b6LMjCGk7fsahw_3VJrcGL2qTdhfVijR8CT-ooJgVy4,20296
126
118
  corvic_generated/feature/v2/space_pb2_grpc.py,sha256=OJ8bqDou85cxgOBpMYv-KZ85jZWriXCt1UzT3WuBpIk,18779
127
119
  corvic_generated/ingest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
120
  corvic_generated/ingest/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -133,13 +125,13 @@ corvic_generated/ingest/v2/pipeline_pb2.py,sha256=2_TOCIOM5nqt3HB1Sb86qqYix-qfF2
133
125
  corvic_generated/ingest/v2/pipeline_pb2_grpc.py,sha256=as3vjtRrgdtmXGxnjLOa2DvpbGOHTCM7tSK3FnU9ZgY,8240
134
126
  corvic_generated/ingest/v2/quick_mode_pb2.py,sha256=E2AnKj-M0eeErPTTl4tbpBVpxstipBCIvW9m9wqLv38,4212
135
127
  corvic_generated/ingest/v2/quick_mode_pb2_grpc.py,sha256=Dfg1MPcY32kbsatdsrpVhvi_qdZPtW4wfLITqh9-FtU,4670
136
- corvic_generated/ingest/v2/resource_pb2.py,sha256=ulh09FQHL0NlXSJVkrq2lbLC9JDrWaGpGbYgJskb0fw,16260
128
+ corvic_generated/ingest/v2/resource_pb2.py,sha256=iKLRhCEtj2H0rZWP79n-5AdyYrZmMB1ljE8E_x-ahlo,16260
137
129
  corvic_generated/ingest/v2/resource_pb2_grpc.py,sha256=Er-l9DfnUJVX3PFRAoKZonyPww1X8bn9PcC4ODHfX-g,17045
138
130
  corvic_generated/ingest/v2/room_pb2.py,sha256=x4FEUSP6qt6-nUxVENidEW0Y4jHqe_vtgIXacuEB7NU,8180
139
131
  corvic_generated/ingest/v2/room_pb2_grpc.py,sha256=X_siQT8CLUwVFMDiP7WiTIMXX528FoPyhhUFUdoZgXI,11422
140
- corvic_generated/ingest/v2/source_pb2.py,sha256=xbyS_qIz3i5Q5Tao08vzjMUnOCfBsQ13AWFBPIBF9I0,12215
132
+ corvic_generated/ingest/v2/source_pb2.py,sha256=sJqx6KWhSGqQMxXiDfIYYeebID3MJk7H06XGu_IvRLY,12215
141
133
  corvic_generated/ingest/v2/source_pb2_grpc.py,sha256=DxOe2g2DNvl2pzbXGOY7jILiHLiLKevx7-e7W0Gg3iY,11874
142
- corvic_generated/ingest/v2/table_pb2.py,sha256=cSElAvX-ahbYEixcAzSoAFj8d_j4NUULjqCQeSVw8kE,8155
134
+ corvic_generated/ingest/v2/table_pb2.py,sha256=b13aZweLIH7e-kZHe_00w6Sndgz3Bg1ODqPnnwlVvn0,8155
143
135
  corvic_generated/ingest/v2/table_pb2_grpc.py,sha256=tVs7wMWyAfvHcCQEiUOHLwaptKxgMFG6E7Ki9vNmmvQ,8151
144
136
  corvic_generated/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
137
  corvic_generated/model/v1alpha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -159,7 +151,7 @@ corvic_generated/orm/v1/pipeline_pb2.py,sha256=_J1kHAe2CQT_epXows4eOZKdQFLTLqZgz
159
151
  corvic_generated/orm/v1/pipeline_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
160
152
  corvic_generated/orm/v1/space_pb2.py,sha256=grI4123GBbA-iHnbtbK8xyfIv1lZL1hDl3q43vXGta8,2147
161
153
  corvic_generated/orm/v1/space_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
162
- corvic_generated/orm/v1/table_pb2.py,sha256=YCS052cP5-398nCPT1lRXjww7PJfJg30nHhb0Ah9iTs,40417
154
+ corvic_generated/orm/v1/table_pb2.py,sha256=7LIZlYQLCGyawPglOhbeciI4p02oqfblJT3b8WmEmCA,40417
163
155
  corvic_generated/orm/v1/table_pb2_grpc.py,sha256=ixBOrA7wwNxEQCRT1kO2N_LayeFYEdFJjVRkkhesWbY,4558
164
156
  corvic_generated/status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
157
  corvic_generated/status/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -213,5 +205,5 @@ corvic_generated/status/v1/event_pb2.pyi,sha256=eU-ibrYpvEAJSIDlSa62-bC96AQU1ykF
213
205
  corvic_generated/status/v1/event_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
214
206
  corvic_generated/status/v1/service_pb2.pyi,sha256=iXLR2FOKQJpBgvBzpD2kVwcYOCksP2aRwK4JYaI9CBw,558
215
207
  corvic_generated/status/v1/service_pb2_grpc.pyi,sha256=OoAnaZ64FD0UTzPoRhYvQU8ecoilhHj3ySjSfHbVDaU,1501
216
- corvic/engine/_native.pyd,sha256=vdFh0jLtkuHLhbHwU5eQ30MnhVmGp7bmZhfA3Hove8M,438784
217
- corvic_engine-0.3.0rc63.dist-info/RECORD,,
208
+ corvic/engine/_native.pyd,sha256=H7VsKjGBCk807LPJkYCPrrFFuXzaj5LmdML8Iconay8,438784
209
+ corvic_engine-0.3.0rc65.dist-info/RECORD,,
@@ -21,7 +21,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
21
21
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
22
22
 
23
23
 
24
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"corvic/feature/v1/experiment.proto\x12\x11\x63orvic.feature.v1\x1a\x1b\x62uf/validate/validate.proto\x1a%corvic/algorithm/graph/v1/graph.proto\x1a corvic/embedding/v1/models.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xe7\x02\n\nParameters\x12{\n\x08space_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\x12p\n\x1b\x63olumn_embedding_parameters\x18\x02 \x01(\x0b\x32..corvic.embedding.v1.ColumnEmbeddingParametersH\x00R\x19\x63olumnEmbeddingParameters\x12`\n\x13node2vec_parameters\x18\x03 \x01(\x0b\x32-.corvic.algorithm.graph.v1.Node2VecParametersH\x00R\x12node2vecParametersB\x08\n\x06params\"\x82\x01\n\nExperiment\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x02 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v1.ParametersR\x06params\"\xa2\x01\n\x10\x45mbeddingMetrics\x12\x15\n\x06ne_sum\x18\x01 \x01(\x02R\x05neSum\x12)\n\x10\x63ondition_number\x18\x02 \x01(\x02R\x0f\x63onditionNumber\x12+\n\x11rcondition_number\x18\x04 \x01(\x02R\x10rconditionNumber\x12\x1f\n\x0bstable_rank\x18\x03 \x01(\x02R\nstableRank\"\x9e\x04\n\x0f\x45xperimentEntry\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x85\x01\n\rexperiment_id\x18\x02 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12=\n\nexperiment\x18\x04 \x01(\x0b\x32\x1d.corvic.feature.v1.ExperimentR\nexperiment\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x06 \x01(\x0b\x32#.corvic.feature.v1.EmbeddingMetricsR\x10\x65mbeddingMetrics\"\x9e\x01\n\x14GetExperimentRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"f\n\x15GetExperimentResponse\x12M\n\x10\x65xperiment_entry\x18\x01 \x01(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x0f\x65xperimentEntry\"\x96\x01\n\x16ListExperimentsRequest\x12|\n\x07room_id\x18\x01 \x01(\tBc\xbaH`\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x06roomId\"l\n\x17ListExperimentsResponse\x12Q\n\x12\x65xperiment_entries\x18\x01 \x03(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x11\x65xperimentEntries\"\xb0\x02\n\x17\x43reateExperimentRequest\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x41\n\nexperiment\x18\x02 \x01(\x0b\x32\x1d.corvic.feature.v1.ExperimentB\x02\x18\x01R\nexperiment\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x04 \x03(\x0b\x32\x1d.corvic.feature.v1.ParametersR\x06params\"i\n\x18\x43reateExperimentResponse\x12M\n\x10\x65xperiment_entry\x18\x01 \x01(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x0f\x65xperimentEntry\"\x8b\x01\n\x17\x44\x65leteExperimentRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x1a\n\x18\x44\x65leteExperimentResponse\"\xa4\x01\n\x1aGetExperimentResultRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"<\n\x1bGetExperimentResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xab\x01\n!GetExperimentVisualizationRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"\x9c\x01\n\x10\x45mbeddingRowData\x12\x34\n\x07row_ids\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructB\x02\x18\x01R\x06rowIds\x12\x17\n\x07node_id\x18\x03 \x01(\tR\x06nodeId\x12\x1b\n\tnode_type\x18\x04 \x01(\tR\x08nodeType\x12\x1c\n\tembedding\x18\x02 \x03(\x02R\tembedding\"`\n\x12\x45mbeddingTableData\x12J\n\x0e\x65mbedding_rows\x18\x01 \x03(\x0b\x32#.corvic.feature.v1.EmbeddingRowDataR\rembeddingRows\"\xa9\x01\n\"GetExperimentVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v1.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved2\xd5\x05\n\x11\x45xperimentService\x12g\n\rGetExperiment\x12\'.corvic.feature.v1.GetExperimentRequest\x1a(.corvic.feature.v1.GetExperimentResponse\"\x03\x90\x02\x01\x12m\n\x10\x43reateExperiment\x12*.corvic.feature.v1.CreateExperimentRequest\x1a+.corvic.feature.v1.CreateExperimentResponse\"\x00\x12m\n\x10\x44\x65leteExperiment\x12*.corvic.feature.v1.DeleteExperimentRequest\x1a+.corvic.feature.v1.DeleteExperimentResponse\"\x00\x12m\n\x0fListExperiments\x12).corvic.feature.v1.ListExperimentsRequest\x1a*.corvic.feature.v1.ListExperimentsResponse\"\x03\x90\x02\x01\x12y\n\x13GetExperimentResult\x12-.corvic.feature.v1.GetExperimentResultRequest\x1a..corvic.feature.v1.GetExperimentResultResponse\"\x03\x90\x02\x01\x12\x8e\x01\n\x1aGetExperimentVisualization\x12\x34.corvic.feature.v1.GetExperimentVisualizationRequest\x1a\x35.corvic.feature.v1.GetExperimentVisualizationResponse\"\x03\x90\x02\x01\x62\x06proto3')
24
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"corvic/feature/v1/experiment.proto\x12\x11\x63orvic.feature.v1\x1a\x1b\x62uf/validate/validate.proto\x1a%corvic/algorithm/graph/v1/graph.proto\x1a corvic/embedding/v1/models.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xe7\x02\n\nParameters\x12{\n\x08space_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\x12p\n\x1b\x63olumn_embedding_parameters\x18\x02 \x01(\x0b\x32..corvic.embedding.v1.ColumnEmbeddingParametersH\x00R\x19\x63olumnEmbeddingParameters\x12`\n\x13node2vec_parameters\x18\x03 \x01(\x0b\x32-.corvic.algorithm.graph.v1.Node2VecParametersH\x00R\x12node2vecParametersB\x08\n\x06params\"\x82\x01\n\nExperiment\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x02 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v1.ParametersR\x06params\"\xa2\x01\n\x10\x45mbeddingMetrics\x12\x15\n\x06ne_sum\x18\x01 \x01(\x02R\x05neSum\x12)\n\x10\x63ondition_number\x18\x02 \x01(\x02R\x0f\x63onditionNumber\x12+\n\x11rcondition_number\x18\x04 \x01(\x02R\x10rconditionNumber\x12\x1f\n\x0bstable_rank\x18\x03 \x01(\x02R\nstableRank\"\x9e\x04\n\x0f\x45xperimentEntry\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x85\x01\n\rexperiment_id\x18\x02 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12=\n\nexperiment\x18\x04 \x01(\x0b\x32\x1d.corvic.feature.v1.ExperimentR\nexperiment\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x06 \x01(\x0b\x32#.corvic.feature.v1.EmbeddingMetricsR\x10\x65mbeddingMetrics\"\x9e\x01\n\x14GetExperimentRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"f\n\x15GetExperimentResponse\x12M\n\x10\x65xperiment_entry\x18\x01 \x01(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x0f\x65xperimentEntry\"\x96\x01\n\x16ListExperimentsRequest\x12|\n\x07room_id\x18\x01 \x01(\tBc\xbaH`\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x06roomId\"l\n\x17ListExperimentsResponse\x12Q\n\x12\x65xperiment_entries\x18\x01 \x03(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x11\x65xperimentEntries\"\xb0\x02\n\x17\x43reateExperimentRequest\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x41\n\nexperiment\x18\x02 \x01(\x0b\x32\x1d.corvic.feature.v1.ExperimentB\x02\x18\x01R\nexperiment\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x04 \x03(\x0b\x32\x1d.corvic.feature.v1.ParametersR\x06params\"i\n\x18\x43reateExperimentResponse\x12M\n\x10\x65xperiment_entry\x18\x01 \x01(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x0f\x65xperimentEntry\"\x8b\x01\n\x17\x44\x65leteExperimentRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x1a\n\x18\x44\x65leteExperimentResponse\"\xa4\x01\n\x1aGetExperimentResultRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"<\n\x1bGetExperimentResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xab\x01\n!GetExperimentVisualizationRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"\x9c\x01\n\x10\x45mbeddingRowData\x12\x34\n\x07row_ids\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructB\x02\x18\x01R\x06rowIds\x12\x17\n\x07node_id\x18\x03 \x01(\tR\x06nodeId\x12\x1b\n\tnode_type\x18\x04 \x01(\tR\x08nodeType\x12\x1c\n\tembedding\x18\x02 \x03(\x02R\tembedding\"`\n\x12\x45mbeddingTableData\x12J\n\x0e\x65mbedding_rows\x18\x01 \x03(\x0b\x32#.corvic.feature.v1.EmbeddingRowDataR\rembeddingRows\"\xa9\x01\n\"GetExperimentVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v1.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved2\xd5\x05\n\x11\x45xperimentService\x12g\n\rGetExperiment\x12\'.corvic.feature.v1.GetExperimentRequest\x1a(.corvic.feature.v1.GetExperimentResponse\"\x03\x90\x02\x01\x12m\n\x10\x43reateExperiment\x12*.corvic.feature.v1.CreateExperimentRequest\x1a+.corvic.feature.v1.CreateExperimentResponse\"\x00\x12m\n\x10\x44\x65leteExperiment\x12*.corvic.feature.v1.DeleteExperimentRequest\x1a+.corvic.feature.v1.DeleteExperimentResponse\"\x00\x12m\n\x0fListExperiments\x12).corvic.feature.v1.ListExperimentsRequest\x1a*.corvic.feature.v1.ListExperimentsResponse\"\x03\x90\x02\x01\x12y\n\x13GetExperimentResult\x12-.corvic.feature.v1.GetExperimentResultRequest\x1a..corvic.feature.v1.GetExperimentResultResponse\"\x03\x90\x02\x01\x12\x8e\x01\n\x1aGetExperimentVisualization\x12\x34.corvic.feature.v1.GetExperimentVisualizationRequest\x1a\x35.corvic.feature.v1.GetExperimentVisualizationResponse\"\x03\x90\x02\x01\x62\x06proto3')
25
25
 
26
26
  _globals = globals()
27
27
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -39,7 +39,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
39
39
  _globals['_GETEXPERIMENTREQUEST'].fields_by_name['experiment_id']._options = None
40
40
  _globals['_GETEXPERIMENTREQUEST'].fields_by_name['experiment_id']._serialized_options = b'\272H]\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
41
41
  _globals['_LISTEXPERIMENTSREQUEST'].fields_by_name['room_id']._options = None
42
- _globals['_LISTEXPERIMENTSREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H`\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
42
+ _globals['_LISTEXPERIMENTSREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H`\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
43
43
  _globals['_CREATEEXPERIMENTREQUEST'].fields_by_name['room_id']._options = None
44
44
  _globals['_CREATEEXPERIMENTREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H]\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
45
45
  _globals['_CREATEEXPERIMENTREQUEST'].fields_by_name['experiment']._options = None
@@ -17,7 +17,7 @@ from corvic_generated.ingest.v2 import source_pb2 as corvic_dot_ingest_dot_v2_do
17
17
  from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
18
18
 
19
19
 
20
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x63orvic/feature/v1/space.proto\x12\x11\x63orvic.feature.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\xa1\x01\n\x0cOutputEntity\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12}\n\tsource_id\x18\x02 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\xb6\x01\n\x0bSpaceOutput\x12]\n\x16output_entity_operator\x18\x01 \x01(\x0e\x32\'.corvic.feature.v1.OutputEntityOperatorR\x14outputEntityOperator\x12H\n\x0foutput_entities\x18\x02 \x03(\x0b\x32\x1f.corvic.feature.v1.OutputEntityR\x0eoutputEntities\"\xdc\x03\n\nSpaceEntry\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\x12\x19\n\x06org_id\x18\x02 \x01(\tB\x02\x18\x01R\x05orgId\x12y\n\x07room_id\x18\x03 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x44\n\x0esource_entries\x18\x04 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x05 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x06 \x01(\tR\x0b\x64\x65scription\x12\x41\n\x0cspace_output\x18\x07 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"\x83\x01\n\x0fGetSpaceRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\nspaceEntry\"\x91\x01\n\x11ListSpacesRequest\x12|\n\x07room_id\x18\x01 \x01(\tBc\xbaH`\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x06roomId\"X\n\x12ListSpacesResponse\x12\x42\n\rspace_entries\x18\x01 \x03(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\x0cspaceEntries\"\x98\x03\n\x12\x43reateSpaceRequest\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x1b\n\x04name\x18\x02 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x84\x01\n\nsource_ids\x18\x04 \x03(\tBe\xbaHb\x92\x01_\"]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x41\n\x0cspace_output\x18\x05 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\nspaceEntry\"\x86\x01\n\x12\x44\x65leteSpaceRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x15\n\x13\x44\x65leteSpaceResponse\"\xe8\x01\n\x1cGetSpaceRelationshipsRequest\x12\x84\x01\n\nsource_ids\x18\x01 \x03(\tBe\xbaHb\x92\x01_\"]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x41\n\x0cspace_output\x18\x02 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"\xba\x02\n\x12SourceRelationship\x12O\n\x12source_entry_start\x18\x01 \x01(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryB\x02\x18\x01R\x10sourceEntryStart\x12K\n\x10source_entry_end\x18\x02 \x01(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryB\x02\x18\x01R\x0esourceEntryEnd\x12&\n\x0fstart_source_id\x18\x03 \x01(\tR\rstartSourceId\x12\"\n\rend_source_id\x18\x04 \x01(\tR\x0b\x65ndSourceId\x12:\n\x19relationship_path_sources\x18\x05 \x03(\tR\x17relationshipPathSources\"y\n\x1dGetSpaceRelationshipsResponse\x12X\n\x14source_relationships\x18\x01 \x03(\x0b\x32%.corvic.feature.v1.SourceRelationshipR\x13sourceRelationships*\x8e\x01\n\x14OutputEntityOperator\x12&\n\"OUTPUT_ENTITY_OPERATOR_UNSPECIFIED\x10\x00\x12&\n\"OUTPUT_ENTITY_OPERATOR_CONJUNCTION\x10\x01\x12&\n\"OUTPUT_ENTITY_OPERATOR_DISJUNCTION\x10\x02\x32\x8e\x04\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v1.GetSpaceRequest\x1a#.corvic.feature.v1.GetSpaceResponse\"\x03\x90\x02\x01\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v1.CreateSpaceRequest\x1a&.corvic.feature.v1.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v1.DeleteSpaceRequest\x1a&.corvic.feature.v1.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v1.ListSpacesRequest\x1a%.corvic.feature.v1.ListSpacesResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceRelationships\x12/.corvic.feature.v1.GetSpaceRelationshipsRequest\x1a\x30.corvic.feature.v1.GetSpaceRelationshipsResponse\"\x03\x90\x02\x01\x1a\x03\x88\x02\x01\x62\x06proto3')
20
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x63orvic/feature/v1/space.proto\x12\x11\x63orvic.feature.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\xa1\x01\n\x0cOutputEntity\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12}\n\tsource_id\x18\x02 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\xb6\x01\n\x0bSpaceOutput\x12]\n\x16output_entity_operator\x18\x01 \x01(\x0e\x32\'.corvic.feature.v1.OutputEntityOperatorR\x14outputEntityOperator\x12H\n\x0foutput_entities\x18\x02 \x03(\x0b\x32\x1f.corvic.feature.v1.OutputEntityR\x0eoutputEntities\"\xdc\x03\n\nSpaceEntry\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\x12\x19\n\x06org_id\x18\x02 \x01(\tB\x02\x18\x01R\x05orgId\x12y\n\x07room_id\x18\x03 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x44\n\x0esource_entries\x18\x04 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x05 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x06 \x01(\tR\x0b\x64\x65scription\x12\x41\n\x0cspace_output\x18\x07 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"\x83\x01\n\x0fGetSpaceRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\nspaceEntry\"\x91\x01\n\x11ListSpacesRequest\x12|\n\x07room_id\x18\x01 \x01(\tBc\xbaH`\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x06roomId\"X\n\x12ListSpacesResponse\x12\x42\n\rspace_entries\x18\x01 \x03(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\x0cspaceEntries\"\x98\x03\n\x12\x43reateSpaceRequest\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x1b\n\x04name\x18\x02 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x84\x01\n\nsource_ids\x18\x04 \x03(\tBe\xbaHb\x92\x01_\"]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x41\n\x0cspace_output\x18\x05 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\nspaceEntry\"\x86\x01\n\x12\x44\x65leteSpaceRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x15\n\x13\x44\x65leteSpaceResponse\"\xe8\x01\n\x1cGetSpaceRelationshipsRequest\x12\x84\x01\n\nsource_ids\x18\x01 \x03(\tBe\xbaHb\x92\x01_\"]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x41\n\x0cspace_output\x18\x02 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"\xba\x02\n\x12SourceRelationship\x12O\n\x12source_entry_start\x18\x01 \x01(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryB\x02\x18\x01R\x10sourceEntryStart\x12K\n\x10source_entry_end\x18\x02 \x01(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryB\x02\x18\x01R\x0esourceEntryEnd\x12&\n\x0fstart_source_id\x18\x03 \x01(\tR\rstartSourceId\x12\"\n\rend_source_id\x18\x04 \x01(\tR\x0b\x65ndSourceId\x12:\n\x19relationship_path_sources\x18\x05 \x03(\tR\x17relationshipPathSources\"y\n\x1dGetSpaceRelationshipsResponse\x12X\n\x14source_relationships\x18\x01 \x03(\x0b\x32%.corvic.feature.v1.SourceRelationshipR\x13sourceRelationships*\x8e\x01\n\x14OutputEntityOperator\x12&\n\"OUTPUT_ENTITY_OPERATOR_UNSPECIFIED\x10\x00\x12&\n\"OUTPUT_ENTITY_OPERATOR_CONJUNCTION\x10\x01\x12&\n\"OUTPUT_ENTITY_OPERATOR_DISJUNCTION\x10\x02\x32\x8e\x04\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v1.GetSpaceRequest\x1a#.corvic.feature.v1.GetSpaceResponse\"\x03\x90\x02\x01\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v1.CreateSpaceRequest\x1a&.corvic.feature.v1.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v1.DeleteSpaceRequest\x1a&.corvic.feature.v1.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v1.ListSpacesRequest\x1a%.corvic.feature.v1.ListSpacesResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceRelationships\x12/.corvic.feature.v1.GetSpaceRelationshipsRequest\x1a\x30.corvic.feature.v1.GetSpaceRelationshipsResponse\"\x03\x90\x02\x01\x1a\x03\x88\x02\x01\x62\x06proto3')
21
21
 
22
22
  _globals = globals()
23
23
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -37,7 +37,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
37
37
  _globals['_GETSPACEREQUEST'].fields_by_name['id']._options = None
38
38
  _globals['_GETSPACEREQUEST'].fields_by_name['id']._serialized_options = b'\272H]\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
39
39
  _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._options = None
40
- _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H`\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
40
+ _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H`\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
41
41
  _globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._options = None
42
42
  _globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H]\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
43
43
  _globals['_CREATESPACEREQUEST'].fields_by_name['name']._options = None
@@ -17,7 +17,7 @@ from corvic_generated.ingest.v2 import source_pb2 as corvic_dot_ingest_dot_v2_do
17
17
  from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
18
18
 
19
19
 
20
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$corvic/feature/v2/feature_view.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\x94\x01\n\x0cOutputSource\x12\x83\x01\n\tsource_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\x9f\x02\n\x10\x46\x65\x61tureViewEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x44\n\x0esource_entries\x18\x03 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x04 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x46\n\x0eoutput_sources\x18\x07 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x06\x10\x07R\x0foutput_entities\"\x8f\x01\n\x15GetFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"k\n\x16GetFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\x9c\x01\n\x17ListFeatureViewsRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x06roomId\"q\n\x18ListFeatureViewsResponse\x12U\n\x14\x66\x65\x61ture_view_entries\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x12\x66\x65\x61tureViewEntries\"\xd3\x03\n\x18\x43reateFeatureViewRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x1e\n\x04name\x18\x02 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12*\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x8a\x01\n\nsource_ids\x18\x04 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x46\n\x0eoutput_sources\x18\x06 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x05\x10\x06R\x0foutput_entities\"n\n\x19\x43reateFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\x92\x01\n\x18\x44\x65leteFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x1b\n\x19\x44\x65leteFeatureViewResponse\"\x8f\x02\n\"GetFeatureViewRelationshipsRequest\x12\x8a\x01\n\nsource_ids\x18\x01 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x46\n\x0eoutput_sources\x18\x03 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x02\x10\x03R\x0eoutput_entites\"U\n\x12SourceRelationship\x12?\n\x1crelationship_path_source_ids\x18\x03 \x03(\tR\x19relationshipPathSourceIds\"\x7f\n#GetFeatureViewRelationshipsResponse\x12X\n\x14source_relationships\x18\x01 \x03(\x0b\x32%.corvic.feature.v2.SourceRelationshipR\x13sourceRelationships2\xea\x04\n\x12\x46\x65\x61tureViewService\x12j\n\x0eGetFeatureView\x12(.corvic.feature.v2.GetFeatureViewRequest\x1a).corvic.feature.v2.GetFeatureViewResponse\"\x03\x90\x02\x01\x12p\n\x11\x43reateFeatureView\x12+.corvic.feature.v2.CreateFeatureViewRequest\x1a,.corvic.feature.v2.CreateFeatureViewResponse\"\x00\x12p\n\x11\x44\x65leteFeatureView\x12+.corvic.feature.v2.DeleteFeatureViewRequest\x1a,.corvic.feature.v2.DeleteFeatureViewResponse\"\x00\x12p\n\x10ListFeatureViews\x12*.corvic.feature.v2.ListFeatureViewsRequest\x1a+.corvic.feature.v2.ListFeatureViewsResponse\"\x03\x90\x02\x01\x12\x91\x01\n\x1bGetFeatureViewRelationships\x12\x35.corvic.feature.v2.GetFeatureViewRelationshipsRequest\x1a\x36.corvic.feature.v2.GetFeatureViewRelationshipsResponse\"\x03\x90\x02\x01\x62\x06proto3')
20
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$corvic/feature/v2/feature_view.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\x94\x01\n\x0cOutputSource\x12\x83\x01\n\tsource_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\x9f\x02\n\x10\x46\x65\x61tureViewEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x44\n\x0esource_entries\x18\x03 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x04 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x46\n\x0eoutput_sources\x18\x07 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x06\x10\x07R\x0foutput_entities\"\x8f\x01\n\x15GetFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"k\n\x16GetFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\x9c\x01\n\x17ListFeatureViewsRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x06roomId\"q\n\x18ListFeatureViewsResponse\x12U\n\x14\x66\x65\x61ture_view_entries\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x12\x66\x65\x61tureViewEntries\"\xd3\x03\n\x18\x43reateFeatureViewRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x1e\n\x04name\x18\x02 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12*\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x8a\x01\n\nsource_ids\x18\x04 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x46\n\x0eoutput_sources\x18\x06 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x05\x10\x06R\x0foutput_entities\"n\n\x19\x43reateFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\x92\x01\n\x18\x44\x65leteFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x1b\n\x19\x44\x65leteFeatureViewResponse\"\x8f\x02\n\"GetFeatureViewRelationshipsRequest\x12\x8a\x01\n\nsource_ids\x18\x01 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x46\n\x0eoutput_sources\x18\x03 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x02\x10\x03R\x0eoutput_entites\"U\n\x12SourceRelationship\x12?\n\x1crelationship_path_source_ids\x18\x03 \x03(\tR\x19relationshipPathSourceIds\"\x7f\n#GetFeatureViewRelationshipsResponse\x12X\n\x14source_relationships\x18\x01 \x03(\x0b\x32%.corvic.feature.v2.SourceRelationshipR\x13sourceRelationships2\xea\x04\n\x12\x46\x65\x61tureViewService\x12j\n\x0eGetFeatureView\x12(.corvic.feature.v2.GetFeatureViewRequest\x1a).corvic.feature.v2.GetFeatureViewResponse\"\x03\x90\x02\x01\x12p\n\x11\x43reateFeatureView\x12+.corvic.feature.v2.CreateFeatureViewRequest\x1a,.corvic.feature.v2.CreateFeatureViewResponse\"\x00\x12p\n\x11\x44\x65leteFeatureView\x12+.corvic.feature.v2.DeleteFeatureViewRequest\x1a,.corvic.feature.v2.DeleteFeatureViewResponse\"\x00\x12p\n\x10ListFeatureViews\x12*.corvic.feature.v2.ListFeatureViewsRequest\x1a+.corvic.feature.v2.ListFeatureViewsResponse\"\x03\x90\x02\x01\x12\x91\x01\n\x1bGetFeatureViewRelationships\x12\x35.corvic.feature.v2.GetFeatureViewRelationshipsRequest\x1a\x36.corvic.feature.v2.GetFeatureViewRelationshipsResponse\"\x03\x90\x02\x01\x62\x06proto3')
21
21
 
22
22
  _globals = globals()
23
23
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -31,7 +31,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
31
31
  _globals['_GETFEATUREVIEWREQUEST'].fields_by_name['id']._options = None
32
32
  _globals['_GETFEATUREVIEWREQUEST'].fields_by_name['id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
33
33
  _globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._options = None
34
- _globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
34
+ _globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
35
35
  _globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['room_id']._options = None
36
36
  _globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
37
37
  _globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['name']._options = None
@@ -21,7 +21,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
21
21
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
22
22
 
23
23
 
24
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x63orvic/feature/v2/space.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a%corvic/algorithm/graph/v1/graph.proto\x1a corvic/embedding/v1/models.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc0\x06\n\nParameters\x12\x8e\x01\n\x0f\x66\x65\x61ture_view_id\x18\x04 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\rfeatureViewId\x12p\n\x1b\x63olumn_embedding_parameters\x18\x02 \x01(\x0b\x32..corvic.embedding.v1.ColumnEmbeddingParametersH\x00R\x19\x63olumnEmbeddingParameters\x12`\n\x13node2vec_parameters\x18\x03 \x01(\x0b\x32-.corvic.algorithm.graph.v1.Node2VecParametersH\x00R\x12node2vecParameters\x12p\n\x17\x63oncat_string_and_embed\x18\x05 \x01(\x0b\x32\x33.corvic.embedding.v1.ConcatStringAndEmbedParametersB\x02\x18\x01H\x00R\x14\x63oncatStringAndEmbed\x12n\n\x1b\x63oncat_and_embed_parameters\x18\x06 \x01(\x0b\x32-.corvic.embedding.v1.ConcatAndEmbedParametersH\x00R\x18\x63oncatAndEmbedParameters\x12n\n\x1b\x65mbed_and_concat_parameters\x18\x07 \x01(\x0b\x32-.corvic.embedding.v1.EmbedAndConcatParametersH\x00R\x18\x65mbedAndConcatParameters\x12\x61\n\x16\x65mbed_image_parameters\x18\x08 \x01(\x0b\x32).corvic.embedding.v1.EmbedImageParametersH\x00R\x14\x65mbedImageParametersB\x08\n\x06paramsJ\x04\x08\x01\x10\x02R\x08space_id\"\xa2\x01\n\x10\x45mbeddingMetrics\x12\x15\n\x06ne_sum\x18\x01 \x01(\x02R\x05neSum\x12)\n\x10\x63ondition_number\x18\x02 \x01(\x02R\x0f\x63onditionNumber\x12+\n\x11rcondition_number\x18\x04 \x01(\x02R\x10rconditionNumber\x12\x1f\n\x0bstable_rank\x18\x03 \x01(\x02R\nstableRank\"\xd2\x03\n\nSpaceEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x06 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\x12<\n\rrecent_events\x18\x07 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x08 \x01(\x0b\x32#.corvic.feature.v2.EmbeddingMetricsR\x10\x65mbeddingMetrics\x12;\n\nspace_type\x18\t \x01(\x0e\x32\x1c.corvic.feature.v2.SpaceTypeR\tspaceType\x12\x1b\n\tauto_sync\x18\n \x01(\x08R\x08\x61utoSync\"\xde\x01\n\rSpaceRunEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12 \n\x0cspace_run_id\x18\x03 \x01(\tR\nspaceRunId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"\x95\x01\n\x0fGetSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x96\x01\n\x11ListSpacesRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x06roomId\"X\n\x12ListSpacesResponse\x12\x42\n\rspace_entries\x18\x01 \x03(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\x0cspaceEntries\"\x95\x02\n\x12\x43reateSpaceRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12*\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x1b\n\tauto_sync\x18\x04 \x01(\x08R\x08\x61utoSync\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x8c\x01\n\x12\x44\x65leteSpaceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x15\n\x13\x44\x65leteSpaceResponse\"\x9b\x01\n\x15GetSpaceResultRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"7\n\x16GetSpaceResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xa2\x01\n\x1cGetSpaceVisualizationRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"f\n\x10\x45mbeddingRowData\x12\x17\n\x07node_id\x18\x03 \x01(\tR\x06nodeId\x12\x1b\n\tnode_type\x18\x04 \x01(\tR\x08nodeType\x12\x1c\n\tembedding\x18\x02 \x03(\x02R\tembedding\"`\n\x12\x45mbeddingTableData\x12J\n\x0e\x65mbedding_rows\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.EmbeddingRowDataR\rembeddingRows\"\xa4\x01\n\x1dGetSpaceVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v2.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved\"V\n\tSourceKey\x12\x1b\n\tsource_id\x18\x01 \x01(\tR\x08sourceId\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value\"f\n\x11VisualizationData\x12;\n\nsource_key\x18\x01 \x01(\x0b\x32\x1c.corvic.feature.v2.SourceKeyR\tsourceKey\x12\x14\n\x05point\x18\x02 \x03(\x02R\x05point\"\xea\x02\n\x17GetVisualizationRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x07spaceId\x12\x89\x01\n\x0cspace_run_id\x18\x04 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\nspaceRunId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\x12&\n\nnum_points\x18\x03 \x01(\x05\x42\x07\xbaH\x04\x1a\x02 \x00R\tnumPoints\"l\n\x18GetVisualizationResponse\x12\x16\n\x06\x63ursor\x18\x01 \x01(\tR\x06\x63ursor\x12\x38\n\x04\x64\x61ta\x18\x02 \x03(\x0b\x32$.corvic.feature.v2.VisualizationDataR\x04\x64\x61ta\"\x8d\x01\n\x1aListSpacerunsCursorPayload\x12\x19\n\x08space_id\x18\x01 \x01(\tR\x07spaceId\x12T\n\x19\x63reate_time_of_last_entry\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"\xb3\x01\n\x14ListSpaceRunsRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x07spaceId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"}\n\x15ListSpaceRunsResponse\x12L\n\x11space_run_entries\x18\x01 \x03(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\x0fspaceRunEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"\x9f\x01\n\x12GetSpaceRunRequest\x12\x88\x01\n\x0cspace_run_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\nspaceRunId\"_\n\x13GetSpaceRunResponse\x12H\n\x0fspace_run_entry\x18\x01 \x01(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\rspaceRunEntry\"\xb4\x01\n\x11PatchSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\x12\x1b\n\tauto_sync\x18\x02 \x01(\x08R\x08\x61utoSync\"T\n\x12PatchSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry*\x89\x01\n\tSpaceType\x12\x1a\n\x16SPACE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15SPACE_TYPE_RELATIONAL\x10\x01\x12\x17\n\x13SPACE_TYPE_SEMANTIC\x10\x02\x12\x16\n\x12SPACE_TYPE_TABULAR\x10\x03\x12\x14\n\x10SPACE_TYPE_IMAGE\x10\x04\x32\x90\x08\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v2.GetSpaceRequest\x1a#.corvic.feature.v2.GetSpaceResponse\"\x03\x90\x02\x01\x12[\n\nPatchSpace\x12$.corvic.feature.v2.PatchSpaceRequest\x1a%.corvic.feature.v2.PatchSpaceResponse\"\x00\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v2.CreateSpaceRequest\x1a&.corvic.feature.v2.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v2.DeleteSpaceRequest\x1a&.corvic.feature.v2.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v2.ListSpacesRequest\x1a%.corvic.feature.v2.ListSpacesResponse\"\x03\x90\x02\x01\x12j\n\x0eGetSpaceResult\x12(.corvic.feature.v2.GetSpaceResultRequest\x1a).corvic.feature.v2.GetSpaceResultResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceVisualization\x12/.corvic.feature.v2.GetSpaceVisualizationRequest\x1a\x30.corvic.feature.v2.GetSpaceVisualizationResponse\"\x03\x90\x02\x01\x12p\n\x10GetVisualization\x12*.corvic.feature.v2.GetVisualizationRequest\x1a+.corvic.feature.v2.GetVisualizationResponse\"\x03\x90\x02\x01\x12g\n\rListSpaceRuns\x12\'.corvic.feature.v2.ListSpaceRunsRequest\x1a(.corvic.feature.v2.ListSpaceRunsResponse\"\x03\x90\x02\x01\x12\x61\n\x0bGetSpaceRun\x12%.corvic.feature.v2.GetSpaceRunRequest\x1a&.corvic.feature.v2.GetSpaceRunResponse\"\x03\x90\x02\x01\x62\x06proto3')
24
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x63orvic/feature/v2/space.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a%corvic/algorithm/graph/v1/graph.proto\x1a corvic/embedding/v1/models.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc0\x06\n\nParameters\x12\x8e\x01\n\x0f\x66\x65\x61ture_view_id\x18\x04 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\rfeatureViewId\x12p\n\x1b\x63olumn_embedding_parameters\x18\x02 \x01(\x0b\x32..corvic.embedding.v1.ColumnEmbeddingParametersH\x00R\x19\x63olumnEmbeddingParameters\x12`\n\x13node2vec_parameters\x18\x03 \x01(\x0b\x32-.corvic.algorithm.graph.v1.Node2VecParametersH\x00R\x12node2vecParameters\x12p\n\x17\x63oncat_string_and_embed\x18\x05 \x01(\x0b\x32\x33.corvic.embedding.v1.ConcatStringAndEmbedParametersB\x02\x18\x01H\x00R\x14\x63oncatStringAndEmbed\x12n\n\x1b\x63oncat_and_embed_parameters\x18\x06 \x01(\x0b\x32-.corvic.embedding.v1.ConcatAndEmbedParametersH\x00R\x18\x63oncatAndEmbedParameters\x12n\n\x1b\x65mbed_and_concat_parameters\x18\x07 \x01(\x0b\x32-.corvic.embedding.v1.EmbedAndConcatParametersH\x00R\x18\x65mbedAndConcatParameters\x12\x61\n\x16\x65mbed_image_parameters\x18\x08 \x01(\x0b\x32).corvic.embedding.v1.EmbedImageParametersH\x00R\x14\x65mbedImageParametersB\x08\n\x06paramsJ\x04\x08\x01\x10\x02R\x08space_id\"\xa2\x01\n\x10\x45mbeddingMetrics\x12\x15\n\x06ne_sum\x18\x01 \x01(\x02R\x05neSum\x12)\n\x10\x63ondition_number\x18\x02 \x01(\x02R\x0f\x63onditionNumber\x12+\n\x11rcondition_number\x18\x04 \x01(\x02R\x10rconditionNumber\x12\x1f\n\x0bstable_rank\x18\x03 \x01(\x02R\nstableRank\"\xd2\x03\n\nSpaceEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x06 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\x12<\n\rrecent_events\x18\x07 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x08 \x01(\x0b\x32#.corvic.feature.v2.EmbeddingMetricsR\x10\x65mbeddingMetrics\x12;\n\nspace_type\x18\t \x01(\x0e\x32\x1c.corvic.feature.v2.SpaceTypeR\tspaceType\x12\x1b\n\tauto_sync\x18\n \x01(\x08R\x08\x61utoSync\"\xde\x01\n\rSpaceRunEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12 \n\x0cspace_run_id\x18\x03 \x01(\tR\nspaceRunId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"\x95\x01\n\x0fGetSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x96\x01\n\x11ListSpacesRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x06roomId\"X\n\x12ListSpacesResponse\x12\x42\n\rspace_entries\x18\x01 \x03(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\x0cspaceEntries\"\x95\x02\n\x12\x43reateSpaceRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12*\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x1b\n\tauto_sync\x18\x04 \x01(\x08R\x08\x61utoSync\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x8c\x01\n\x12\x44\x65leteSpaceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x15\n\x13\x44\x65leteSpaceResponse\"\x9b\x01\n\x15GetSpaceResultRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"7\n\x16GetSpaceResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xa2\x01\n\x1cGetSpaceVisualizationRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"f\n\x10\x45mbeddingRowData\x12\x17\n\x07node_id\x18\x03 \x01(\tR\x06nodeId\x12\x1b\n\tnode_type\x18\x04 \x01(\tR\x08nodeType\x12\x1c\n\tembedding\x18\x02 \x03(\x02R\tembedding\"`\n\x12\x45mbeddingTableData\x12J\n\x0e\x65mbedding_rows\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.EmbeddingRowDataR\rembeddingRows\"\xa4\x01\n\x1dGetSpaceVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v2.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved\"V\n\tSourceKey\x12\x1b\n\tsource_id\x18\x01 \x01(\tR\x08sourceId\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value\"f\n\x11VisualizationData\x12;\n\nsource_key\x18\x01 \x01(\x0b\x32\x1c.corvic.feature.v2.SourceKeyR\tsourceKey\x12\x14\n\x05point\x18\x02 \x03(\x02R\x05point\"\xea\x02\n\x17GetVisualizationRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x89\x01\n\x0cspace_run_id\x18\x04 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\nspaceRunId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\x12&\n\nnum_points\x18\x03 \x01(\x05\x42\x07\xbaH\x04\x1a\x02 \x00R\tnumPoints\"l\n\x18GetVisualizationResponse\x12\x16\n\x06\x63ursor\x18\x01 \x01(\tR\x06\x63ursor\x12\x38\n\x04\x64\x61ta\x18\x02 \x03(\x0b\x32$.corvic.feature.v2.VisualizationDataR\x04\x64\x61ta\"\x8d\x01\n\x1aListSpacerunsCursorPayload\x12\x19\n\x08space_id\x18\x01 \x01(\tR\x07spaceId\x12T\n\x19\x63reate_time_of_last_entry\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"\xb3\x01\n\x14ListSpaceRunsRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"}\n\x15ListSpaceRunsResponse\x12L\n\x11space_run_entries\x18\x01 \x03(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\x0fspaceRunEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"\x9f\x01\n\x12GetSpaceRunRequest\x12\x88\x01\n\x0cspace_run_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\nspaceRunId\"_\n\x13GetSpaceRunResponse\x12H\n\x0fspace_run_entry\x18\x01 \x01(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\rspaceRunEntry\"\xb4\x01\n\x11PatchSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\x12\x1b\n\tauto_sync\x18\x02 \x01(\x08R\x08\x61utoSync\"T\n\x12PatchSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry*\x89\x01\n\tSpaceType\x12\x1a\n\x16SPACE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15SPACE_TYPE_RELATIONAL\x10\x01\x12\x17\n\x13SPACE_TYPE_SEMANTIC\x10\x02\x12\x16\n\x12SPACE_TYPE_TABULAR\x10\x03\x12\x14\n\x10SPACE_TYPE_IMAGE\x10\x04\x32\x90\x08\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v2.GetSpaceRequest\x1a#.corvic.feature.v2.GetSpaceResponse\"\x03\x90\x02\x01\x12[\n\nPatchSpace\x12$.corvic.feature.v2.PatchSpaceRequest\x1a%.corvic.feature.v2.PatchSpaceResponse\"\x00\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v2.CreateSpaceRequest\x1a&.corvic.feature.v2.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v2.DeleteSpaceRequest\x1a&.corvic.feature.v2.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v2.ListSpacesRequest\x1a%.corvic.feature.v2.ListSpacesResponse\"\x03\x90\x02\x01\x12j\n\x0eGetSpaceResult\x12(.corvic.feature.v2.GetSpaceResultRequest\x1a).corvic.feature.v2.GetSpaceResultResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceVisualization\x12/.corvic.feature.v2.GetSpaceVisualizationRequest\x1a\x30.corvic.feature.v2.GetSpaceVisualizationResponse\"\x03\x90\x02\x01\x12p\n\x10GetVisualization\x12*.corvic.feature.v2.GetVisualizationRequest\x1a+.corvic.feature.v2.GetVisualizationResponse\"\x03\x90\x02\x01\x12g\n\rListSpaceRuns\x12\'.corvic.feature.v2.ListSpaceRunsRequest\x1a(.corvic.feature.v2.ListSpaceRunsResponse\"\x03\x90\x02\x01\x12\x61\n\x0bGetSpaceRun\x12%.corvic.feature.v2.GetSpaceRunRequest\x1a&.corvic.feature.v2.GetSpaceRunResponse\"\x03\x90\x02\x01\x62\x06proto3')
25
25
 
26
26
  _globals = globals()
27
27
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -35,7 +35,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
35
35
  _globals['_GETSPACEREQUEST'].fields_by_name['space_id']._options = None
36
36
  _globals['_GETSPACEREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
37
37
  _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._options = None
38
- _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
38
+ _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
39
39
  _globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._options = None
40
40
  _globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
41
41
  _globals['_CREATESPACEREQUEST'].fields_by_name['description']._options = None
@@ -47,13 +47,13 @@ if _descriptor._USE_C_DESCRIPTORS == False:
47
47
  _globals['_GETSPACEVISUALIZATIONREQUEST'].fields_by_name['space_id']._options = None
48
48
  _globals['_GETSPACEVISUALIZATIONREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
49
49
  _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_id']._options = None
50
- _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
50
+ _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
51
51
  _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_run_id']._options = None
52
- _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_run_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
52
+ _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_run_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
53
53
  _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['num_points']._options = None
54
54
  _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['num_points']._serialized_options = b'\272H\004\032\002 \000'
55
55
  _globals['_LISTSPACERUNSREQUEST'].fields_by_name['space_id']._options = None
56
- _globals['_LISTSPACERUNSREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
56
+ _globals['_LISTSPACERUNSREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
57
57
  _globals['_GETSPACERUNREQUEST'].fields_by_name['space_run_id']._options = None
58
58
  _globals['_GETSPACERUNREQUEST'].fields_by_name['space_run_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
59
59
  _globals['_PATCHSPACEREQUEST'].fields_by_name['space_id']._options = None
@@ -18,7 +18,7 @@ from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor
18
18
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
19
19
 
20
20
 
21
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x63orvic/ingest/v2/resource.proto\x12\x10\x63orvic.ingest.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x99\x04\n\x10ResourceMetadata\x12\x1e\n\x04name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12%\n\tmime_type\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xc8\x01R\x08mimeType\x12\x7f\n\x07room_id\x18\x03 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12-\n\roriginal_path\x18\x05 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0coriginalPath\x12*\n\x0b\x64\x65scription\x18\x06 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x87\x01\n\x0bpipeline_id\x18\x08 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\npipelineId\x12;\n\ttype_hint\x18\x04 \x01(\x0e\x32\x1e.corvic.ingest.v2.ResourceTypeR\x08typeHint\x12\x1b\n\x04size\x18\x07 \x01(\x03\x42\x07\xbaH\x04\"\x02 \x00R\x04size\"\xee\x02\n\rResourceEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x1b\n\tmime_type\x18\x03 \x01(\tR\x08mimeType\x12\x10\n\x03md5\x18\x05 \x01(\tR\x03md5\x12\x17\n\x07room_id\x18\x06 \x01(\tR\x06roomId\x12\x12\n\x04size\x18\x07 \x01(\x04R\x04size\x12#\n\roriginal_path\x18\t \x01(\tR\x0coriginalPath\x12 \n\x0b\x64\x65scription\x18\x0b \x01(\tR\x0b\x64\x65scription\x12\x1f\n\x0bpipeline_id\x18\x0c \x01(\tR\npipelineId\x12\x37\n\x18referenced_by_source_ids\x18\n \x03(\tR\x15referencedBySourceIds\x12<\n\rrecent_events\x18\x08 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"p\n\x16\x43reateUploadURLRequest\x12>\n\x08metadata\x18\x01 \x01(\x0b\x32\".corvic.ingest.v2.ResourceMetadataR\x08metadata\x12\x16\n\x06origin\x18\x02 \x01(\tR\x06origin\"A\n\x17\x43reateUploadURLResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"s\n\x15UploadURLTokenPayload\x12>\n\x08metadata\x18\x01 \x01(\x0b\x32\".corvic.ingest.v2.ResourceMetadataR\x08metadata\x12\x1a\n\x08\x66ilename\x18\x02 \x01(\tR\x08\x66ilename\"0\n\x18\x46inalizeUploadURLRequest\x12\x14\n\x05token\x18\x01 \x01(\tR\x05token\"R\n\x19\x46inalizeUploadURLResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x8f\x01\n\x15\x44\x65leteResourceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x18\n\x16\x44\x65leteResourceResponse\"\x8c\x01\n\x12GetResourceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"L\n\x13GetResourceResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x99\x01\n\x14ListResourcesRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x06roomId\"N\n\x15ListResourcesResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x8b\x01\n\x0cResourceList\x12{\n\x02id\x18\x01 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\xdb\x01\n\x15WatchResourcesRequest\x12\x81\x01\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')H\x00R\x06roomId\x12\x32\n\x03ids\x18\x02 \x01(\x0b\x32\x1e.corvic.ingest.v2.ResourceListH\x00R\x03idsB\n\n\x08selector\"d\n\x16WatchResourcesResponse\x12J\n\x10updated_resource\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x0fupdatedResource\"\xb5\x01\n#ListResourcesPaginatedCursorPayload\x12T\n\x19\x63reate_time_of_last_entry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x1f\n\x0bpipeline_id\x18\x03 \x01(\tR\npipelineId\"\xef\x02\n\x1dListResourcesPaginatedRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x06roomId\x12\x88\x01\n\x0bpipeline_id\x18\x04 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\npipelineId\x12(\n\x10\x65ntries_per_page\x18\x02 \x01(\rR\x0e\x65ntriesPerPage\x12\x16\n\x06\x63ursor\x18\x03 \x01(\tR\x06\x63ursor\"\x91\x01\n\x1eListResourcesPaginatedResponse\x12J\n\x10resource_entries\x18\x03 \x03(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x0fresourceEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursorJ\x04\x08\x01\x10\x02R\x05\x65ntry\"\x9a\x01\n CreateResourceDownloadURLRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"5\n!CreateResourceDownloadURLResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url*\xab\x01\n\x0cResourceType\x12\x1d\n\x19RESOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x13RESOURCE_TYPE_TABLE\x10\x01\x1a\x02\x08\x01\x12!\n\x1dRESOURCE_TYPE_DIMENSION_TABLE\x10\x02\x12\x1c\n\x18RESOURCE_TYPE_FACT_TABLE\x10\x03\x12\x1e\n\x1aRESOURCE_TYPE_PDF_DOCUMENT\x10\x04\x32\x97\x07\n\x0fResourceService\x12h\n\x0f\x43reateUploadURL\x12(.corvic.ingest.v2.CreateUploadURLRequest\x1a).corvic.ingest.v2.CreateUploadURLResponse\"\x00\x12q\n\x11\x46inalizeUploadURL\x12*.corvic.ingest.v2.FinalizeUploadURLRequest\x1a+.corvic.ingest.v2.FinalizeUploadURLResponse\"\x03\x90\x02\x02\x12\x65\n\x0e\x44\x65leteResource\x12\'.corvic.ingest.v2.DeleteResourceRequest\x1a(.corvic.ingest.v2.DeleteResourceResponse\"\x00\x12_\n\x0bGetResource\x12$.corvic.ingest.v2.GetResourceRequest\x1a%.corvic.ingest.v2.GetResourceResponse\"\x03\x90\x02\x01\x12g\n\rListResources\x12&.corvic.ingest.v2.ListResourcesRequest\x1a\'.corvic.ingest.v2.ListResourcesResponse\"\x03\x90\x02\x01\x30\x01\x12\x80\x01\n\x16ListResourcesPaginated\x12/.corvic.ingest.v2.ListResourcesPaginatedRequest\x1a\x30.corvic.ingest.v2.ListResourcesPaginatedResponse\"\x03\x90\x02\x01\x12j\n\x0eWatchResources\x12\'.corvic.ingest.v2.WatchResourcesRequest\x1a(.corvic.ingest.v2.WatchResourcesResponse\"\x03\x90\x02\x01\x30\x01\x12\x86\x01\n\x19\x43reateResourceDownloadURL\x12\x32.corvic.ingest.v2.CreateResourceDownloadURLRequest\x1a\x33.corvic.ingest.v2.CreateResourceDownloadURLResponse\"\x00\x62\x06proto3')
21
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x63orvic/ingest/v2/resource.proto\x12\x10\x63orvic.ingest.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x99\x04\n\x10ResourceMetadata\x12\x1e\n\x04name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12%\n\tmime_type\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xc8\x01R\x08mimeType\x12\x7f\n\x07room_id\x18\x03 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12-\n\roriginal_path\x18\x05 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0coriginalPath\x12*\n\x0b\x64\x65scription\x18\x06 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x87\x01\n\x0bpipeline_id\x18\x08 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\npipelineId\x12;\n\ttype_hint\x18\x04 \x01(\x0e\x32\x1e.corvic.ingest.v2.ResourceTypeR\x08typeHint\x12\x1b\n\x04size\x18\x07 \x01(\x03\x42\x07\xbaH\x04\"\x02 \x00R\x04size\"\xee\x02\n\rResourceEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x1b\n\tmime_type\x18\x03 \x01(\tR\x08mimeType\x12\x10\n\x03md5\x18\x05 \x01(\tR\x03md5\x12\x17\n\x07room_id\x18\x06 \x01(\tR\x06roomId\x12\x12\n\x04size\x18\x07 \x01(\x04R\x04size\x12#\n\roriginal_path\x18\t \x01(\tR\x0coriginalPath\x12 \n\x0b\x64\x65scription\x18\x0b \x01(\tR\x0b\x64\x65scription\x12\x1f\n\x0bpipeline_id\x18\x0c \x01(\tR\npipelineId\x12\x37\n\x18referenced_by_source_ids\x18\n \x03(\tR\x15referencedBySourceIds\x12<\n\rrecent_events\x18\x08 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"p\n\x16\x43reateUploadURLRequest\x12>\n\x08metadata\x18\x01 \x01(\x0b\x32\".corvic.ingest.v2.ResourceMetadataR\x08metadata\x12\x16\n\x06origin\x18\x02 \x01(\tR\x06origin\"A\n\x17\x43reateUploadURLResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"s\n\x15UploadURLTokenPayload\x12>\n\x08metadata\x18\x01 \x01(\x0b\x32\".corvic.ingest.v2.ResourceMetadataR\x08metadata\x12\x1a\n\x08\x66ilename\x18\x02 \x01(\tR\x08\x66ilename\"0\n\x18\x46inalizeUploadURLRequest\x12\x14\n\x05token\x18\x01 \x01(\tR\x05token\"R\n\x19\x46inalizeUploadURLResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x8f\x01\n\x15\x44\x65leteResourceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x18\n\x16\x44\x65leteResourceResponse\"\x8c\x01\n\x12GetResourceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"L\n\x13GetResourceResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x99\x01\n\x14ListResourcesRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x06roomId\"N\n\x15ListResourcesResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x8b\x01\n\x0cResourceList\x12{\n\x02id\x18\x01 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\xdb\x01\n\x15WatchResourcesRequest\x12\x81\x01\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')H\x00R\x06roomId\x12\x32\n\x03ids\x18\x02 \x01(\x0b\x32\x1e.corvic.ingest.v2.ResourceListH\x00R\x03idsB\n\n\x08selector\"d\n\x16WatchResourcesResponse\x12J\n\x10updated_resource\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x0fupdatedResource\"\xb5\x01\n#ListResourcesPaginatedCursorPayload\x12T\n\x19\x63reate_time_of_last_entry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x1f\n\x0bpipeline_id\x18\x03 \x01(\tR\npipelineId\"\xef\x02\n\x1dListResourcesPaginatedRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x06roomId\x12\x88\x01\n\x0bpipeline_id\x18\x04 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\npipelineId\x12(\n\x10\x65ntries_per_page\x18\x02 \x01(\rR\x0e\x65ntriesPerPage\x12\x16\n\x06\x63ursor\x18\x03 \x01(\tR\x06\x63ursor\"\x91\x01\n\x1eListResourcesPaginatedResponse\x12J\n\x10resource_entries\x18\x03 \x03(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x0fresourceEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursorJ\x04\x08\x01\x10\x02R\x05\x65ntry\"\x9a\x01\n CreateResourceDownloadURLRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"5\n!CreateResourceDownloadURLResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url*\xab\x01\n\x0cResourceType\x12\x1d\n\x19RESOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x13RESOURCE_TYPE_TABLE\x10\x01\x1a\x02\x08\x01\x12!\n\x1dRESOURCE_TYPE_DIMENSION_TABLE\x10\x02\x12\x1c\n\x18RESOURCE_TYPE_FACT_TABLE\x10\x03\x12\x1e\n\x1aRESOURCE_TYPE_PDF_DOCUMENT\x10\x04\x32\x97\x07\n\x0fResourceService\x12h\n\x0f\x43reateUploadURL\x12(.corvic.ingest.v2.CreateUploadURLRequest\x1a).corvic.ingest.v2.CreateUploadURLResponse\"\x00\x12q\n\x11\x46inalizeUploadURL\x12*.corvic.ingest.v2.FinalizeUploadURLRequest\x1a+.corvic.ingest.v2.FinalizeUploadURLResponse\"\x03\x90\x02\x02\x12\x65\n\x0e\x44\x65leteResource\x12\'.corvic.ingest.v2.DeleteResourceRequest\x1a(.corvic.ingest.v2.DeleteResourceResponse\"\x00\x12_\n\x0bGetResource\x12$.corvic.ingest.v2.GetResourceRequest\x1a%.corvic.ingest.v2.GetResourceResponse\"\x03\x90\x02\x01\x12g\n\rListResources\x12&.corvic.ingest.v2.ListResourcesRequest\x1a\'.corvic.ingest.v2.ListResourcesResponse\"\x03\x90\x02\x01\x30\x01\x12\x80\x01\n\x16ListResourcesPaginated\x12/.corvic.ingest.v2.ListResourcesPaginatedRequest\x1a\x30.corvic.ingest.v2.ListResourcesPaginatedResponse\"\x03\x90\x02\x01\x12j\n\x0eWatchResources\x12\'.corvic.ingest.v2.WatchResourcesRequest\x1a(.corvic.ingest.v2.WatchResourcesResponse\"\x03\x90\x02\x01\x30\x01\x12\x86\x01\n\x19\x43reateResourceDownloadURL\x12\x32.corvic.ingest.v2.CreateResourceDownloadURLRequest\x1a\x33.corvic.ingest.v2.CreateResourceDownloadURLResponse\"\x00\x62\x06proto3')
22
22
 
23
23
  _globals = globals()
24
24
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -46,15 +46,15 @@ if _descriptor._USE_C_DESCRIPTORS == False:
46
46
  _globals['_GETRESOURCEREQUEST'].fields_by_name['id']._options = None
47
47
  _globals['_GETRESOURCEREQUEST'].fields_by_name['id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
48
48
  _globals['_LISTRESOURCESREQUEST'].fields_by_name['room_id']._options = None
49
- _globals['_LISTRESOURCESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
49
+ _globals['_LISTRESOURCESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
50
50
  _globals['_RESOURCELIST'].fields_by_name['id']._options = None
51
51
  _globals['_RESOURCELIST'].fields_by_name['id']._serialized_options = b'\272Hh\222\001e\"cr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
52
52
  _globals['_WATCHRESOURCESREQUEST'].fields_by_name['room_id']._options = None
53
53
  _globals['_WATCHRESOURCESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
54
54
  _globals['_LISTRESOURCESPAGINATEDREQUEST'].fields_by_name['room_id']._options = None
55
- _globals['_LISTRESOURCESPAGINATEDREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
55
+ _globals['_LISTRESOURCESPAGINATEDREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
56
56
  _globals['_LISTRESOURCESPAGINATEDREQUEST'].fields_by_name['pipeline_id']._options = None
57
- _globals['_LISTRESOURCESPAGINATEDREQUEST'].fields_by_name['pipeline_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
57
+ _globals['_LISTRESOURCESPAGINATEDREQUEST'].fields_by_name['pipeline_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
58
58
  _globals['_CREATERESOURCEDOWNLOADURLREQUEST'].fields_by_name['id']._options = None
59
59
  _globals['_CREATERESOURCEDOWNLOADURLREQUEST'].fields_by_name['id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
60
60
  _globals['_RESOURCESERVICE'].methods_by_name['FinalizeUploadURL']._options = None