corvic-engine 0.3.0rc58__cp38-abi3-win_amd64.whl → 0.3.0rc59__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.
- corvic/engine/_native.pyd +0 -0
- corvic/model/_completion_model.py +10 -4
- corvic/model/_proto_orm_convert.py +4 -2
- corvic/orm/__init__.py +5 -1
- {corvic_engine-0.3.0rc58.dist-info → corvic_engine-0.3.0rc59.dist-info}/METADATA +1 -1
- {corvic_engine-0.3.0rc58.dist-info → corvic_engine-0.3.0rc59.dist-info}/RECORD +20 -38
- corvic_generated/feature/v2/feature_view_pb2.py +39 -47
- corvic_generated/feature/v2/feature_view_pb2.pyi +0 -14
- corvic_generated/feature/v2/space_pb2.py +77 -87
- corvic_generated/ingest/v2/pipeline_pb2.py +33 -27
- corvic_generated/ingest/v2/quick_mode_pb2.py +18 -13
- corvic_generated/ingest/v2/quick_mode_pb2.pyi +1 -0
- corvic_generated/ingest/v2/resource_pb2.py +64 -58
- corvic_generated/ingest/v2/room_pb2.py +32 -32
- corvic_generated/ingest/v2/source_pb2.py +43 -43
- corvic_generated/ingest/v2/table_pb2.py +23 -23
- corvic_generated/model/v1alpha/models_pb2.py +2 -2
- corvic_generated/model/v1alpha/models_pb2.pyi +4 -4
- corvic_generated/chat/__init__.py +0 -0
- corvic_generated/chat/v1/__init__.py +0 -0
- corvic_generated/chat/v1/service_pb2.py +0 -65
- corvic_generated/chat/v1/service_pb2.pyi +0 -132
- corvic_generated/chat/v1/service_pb2_grpc.py +0 -198
- corvic_generated/chat/v1/service_pb2_grpc.pyi +0 -97
- corvic_generated/completion/__init__.py +0 -0
- corvic_generated/completion/v1/__init__.py +0 -0
- corvic_generated/completion/v1/service_pb2.py +0 -69
- corvic_generated/completion/v1/service_pb2.pyi +0 -201
- corvic_generated/completion/v1/service_pb2_grpc.py +0 -198
- corvic_generated/completion/v1/service_pb2_grpc.pyi +0 -97
- corvic_generated/query/__init__.py +0 -0
- corvic_generated/query/v1/__init__.py +0 -0
- corvic_generated/query/v1/query_pb2.py +0 -36
- corvic_generated/query/v1/query_pb2.pyi +0 -63
- corvic_generated/query/v1/query_pb2_grpc.py +0 -66
- corvic_generated/query/v1/query_pb2_grpc.pyi +0 -41
- {corvic_engine-0.3.0rc58.dist-info → corvic_engine-0.3.0rc59.dist-info}/WHEEL +0 -0
- {corvic_engine-0.3.0rc58.dist-info → corvic_engine-0.3.0rc59.dist-info}/licenses/LICENSE +0 -0
corvic/engine/_native.pyd
CHANGED
Binary file
|
@@ -122,8 +122,12 @@ class CompletionModel(
|
|
122
122
|
return None
|
123
123
|
|
124
124
|
@property
|
125
|
-
def
|
126
|
-
|
125
|
+
def last_successful_validation(self) -> datetime.datetime | None:
|
126
|
+
if self.proto_self.last_successful_validation != UNIX_TIMESTAMP_START_DATETIME:
|
127
|
+
return self.proto_self.last_successful_validation.ToDatetime(
|
128
|
+
tzinfo=datetime.timezone.utc
|
129
|
+
)
|
130
|
+
return None
|
127
131
|
|
128
132
|
@classmethod
|
129
133
|
def create(
|
@@ -218,7 +222,9 @@ class CompletionModel(
|
|
218
222
|
proto_self.last_validation_time.FromDatetime(last_validation_time)
|
219
223
|
return CompletionModel(self.client, proto_self)
|
220
224
|
|
221
|
-
def
|
225
|
+
def with_last_successful_validation(
|
226
|
+
self, last_successful_validation: datetime.datetime
|
227
|
+
) -> CompletionModel:
|
222
228
|
proto_self = copy.deepcopy(self.proto_self)
|
223
|
-
proto_self.
|
229
|
+
proto_self.last_successful_validation.FromDatetime(last_successful_validation)
|
224
230
|
return CompletionModel(self.client, proto_self)
|
@@ -225,7 +225,9 @@ def completion_model_orm_to_proto(
|
|
225
225
|
last_validation_time=timestamp_orm_to_proto(
|
226
226
|
completion_model_orm.last_validation_time
|
227
227
|
),
|
228
|
-
|
228
|
+
last_successful_validation=timestamp_orm_to_proto(
|
229
|
+
completion_model_orm.last_successful_validation
|
230
|
+
),
|
229
231
|
)
|
230
232
|
|
231
233
|
|
@@ -580,7 +582,7 @@ def completion_model_proto_to_orm(
|
|
580
582
|
parameters=proto_obj.parameters,
|
581
583
|
secret_api_key=proto_obj.secret_api_key,
|
582
584
|
last_validation_time=proto_obj.last_validation_time.ToDatetime(),
|
583
|
-
|
585
|
+
last_successful_validation=proto_obj.last_successful_validation.ToDatetime(),
|
584
586
|
)
|
585
587
|
return add_orm_org_mixin_to_session(
|
586
588
|
orm_obj, proto_obj, orm.CompletionModelID, session
|
corvic/orm/__init__.py
CHANGED
@@ -381,7 +381,11 @@ class CompletionModel(SoftDeleteMixin, BelongsToOrgMixin, Base, kw_only=True):
|
|
381
381
|
server_default=None,
|
382
382
|
default=None,
|
383
383
|
)
|
384
|
-
|
384
|
+
last_successful_validation: sa_orm.Mapped[datetime | None] = sa_orm.mapped_column(
|
385
|
+
sa.DateTime(timezone=True),
|
386
|
+
server_default=None,
|
387
|
+
default=None,
|
388
|
+
)
|
385
389
|
|
386
390
|
@property
|
387
391
|
def model_key(self):
|
@@ -1,6 +1,6 @@
|
|
1
|
-
corvic_engine-0.3.
|
2
|
-
corvic_engine-0.3.
|
3
|
-
corvic_engine-0.3.
|
1
|
+
corvic_engine-0.3.0rc59.dist-info/METADATA,sha256=xVfEqwRzW93rezz6HLosUsoUuVzV-idwF5wk4Q5zxeA,1876
|
2
|
+
corvic_engine-0.3.0rc59.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
|
3
|
+
corvic_engine-0.3.0rc59.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=XIJjFDdT-JnmZ43lgP-K-dLgnR17L_uaJqBPAYlsPsk,11148
|
@@ -15,13 +15,13 @@ corvic/engine/__init__.py,sha256=XL4Vg7rNcBi29ccVelpeFizR9oJtGYXDn84W9zok9d4,975
|
|
15
15
|
corvic/model/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
corvic/model/_agent.py,sha256=8tle_IGhy0LTPd1nNXDfBypnzF3CI7S9fhZbDsVxnZc,4737
|
17
17
|
corvic/model/_base_model.py,sha256=WYBBPa1TeU9wchh-UBFlMwuQMDY5cKHBlDznhLbnSHA,8989
|
18
|
-
corvic/model/_completion_model.py,sha256=
|
18
|
+
corvic/model/_completion_model.py,sha256=92zhXImWMCYymMUvtr0OtqqMlQBN7MGTUslMqRNcXxI,8001
|
19
19
|
corvic/model/_defaults.py,sha256=yoKPPSmYJCE5YAD5jLTEmT4XNf_zXoggNK-uyG8MfVs,1524
|
20
20
|
corvic/model/_errors.py,sha256=Ctlq04SDwHzJPvLaL1rzqzwVqf2b50EILfW3cH4vnh8,261
|
21
21
|
corvic/model/_feature_type.py,sha256=Y-_-wa9fv7XaCAkxfjjoCLxxK2Ftfba-PMefD7bNXzs,917
|
22
22
|
corvic/model/_feature_view.py,sha256=gdcXzsMuxpJ7vwbIGYgZlLYNxi2zvdZXvFsb36x6lKg,49694
|
23
23
|
corvic/model/_pipeline.py,sha256=c16ap3yHQXqBmjG_2bMzz8hBYJCr14V2WxwlAYOw5Zw,16279
|
24
|
-
corvic/model/_proto_orm_convert.py,sha256=
|
24
|
+
corvic/model/_proto_orm_convert.py,sha256=a5VTA6Vab7mNOadLDk47ou0wxJ0c2msgDKnXYvdsIiM,26340
|
25
25
|
corvic/model/_resource.py,sha256=w5m6mmD8KrHJ8efPTfRV0JKaCmkDRaxlGeuRMmVbw10,7773
|
26
26
|
corvic/model/_room.py,sha256=36mXngZ38L4mr6_LgUm-QgsUUaoGMiYQRfvXLV_jd-4,2914
|
27
27
|
corvic/model/_source.py,sha256=8AZQylOWuOuj-czSTLLbCZMkjFHAgwYQjNhxadRpvPI,9897
|
@@ -50,7 +50,7 @@ corvic/orm/keys.py,sha256=Ag6Xbpvxev-VByT1KJ8ChUn9vKVEzkkMXxrjvtADCtY,2182
|
|
50
50
|
corvic/orm/mixins.py,sha256=HfmzJ7LblHtddbbkDmv7nNWURL87Bnj8NeOnNbfmSN4,17794
|
51
51
|
corvic/orm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
52
|
corvic/orm/_proto_columns.py,sha256=tcOu92UjFJFYZLasS6sWJQBDRK26yrnmpTii_LDY4iw,913
|
53
|
-
corvic/orm/__init__.py,sha256=
|
53
|
+
corvic/orm/__init__.py,sha256=amp-PwkqwKptCkduTJI4nfuGN6oalDHd-h2Vfjo9p0U,15012
|
54
54
|
corvic/pa_scalar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
corvic/pa_scalar/_const.py,sha256=1nk6w3Y7crd3J5jSCq7DRVa1lcGk4H1RUr1l4NjnlzE,868
|
56
56
|
corvic/pa_scalar/_from_value.py,sha256=fS3TNPcPI3jAKGmcUIhn8rdqdQEAwgTLEneVxFUeK6M,27531
|
@@ -110,14 +110,6 @@ corvic_generated/algorithm/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
110
110
|
corvic_generated/algorithm/graph/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
111
|
corvic_generated/algorithm/graph/v1/graph_pb2.py,sha256=Y_bE0lR18eIFQDqGs4FCmErt_mNjnvvqJBic479D11A,1608
|
112
112
|
corvic_generated/algorithm/graph/v1/graph_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
|
113
|
-
corvic_generated/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
114
|
-
corvic_generated/chat/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
115
|
-
corvic_generated/chat/v1/service_pb2.py,sha256=-hRw1p9VNW__Tyq-Vuvl2Zo2q0GCefsBhsTjriRV9SI,6401
|
116
|
-
corvic_generated/chat/v1/service_pb2_grpc.py,sha256=TZ4fEeCq6y7COQmjs4TQHGrbyOg3hVdcg_PTRjxZoJ4,9817
|
117
|
-
corvic_generated/completion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
118
|
-
corvic_generated/completion/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
119
|
-
corvic_generated/completion/v1/service_pb2.py,sha256=8TDBnCltTufSOhu6ORl0rNLN-VrgDqk7GyVHNeByBXE,8667
|
120
|
-
corvic_generated/completion/v1/service_pb2_grpc.py,sha256=R7lMx8mkw7f62RcIDQDg8JG980szQ8CXb2a5eDFn_9k,9934
|
121
113
|
corvic_generated/embedding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
122
114
|
corvic_generated/embedding/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
123
115
|
corvic_generated/embedding/v1/models_pb2.py,sha256=uQDda8455N2roSi7gkFED5BqPzjw2RNDgtuSBDhJmac,4433
|
@@ -129,30 +121,30 @@ corvic_generated/feature/v1/experiment_pb2_grpc.py,sha256=B2t03V3SImzl6cZkJefpWX
|
|
129
121
|
corvic_generated/feature/v1/space_pb2.py,sha256=s7_QkHupd5MWnfQxrdTrbkKugn3VGZRzOokhCgpzO88,11969
|
130
122
|
corvic_generated/feature/v1/space_pb2_grpc.py,sha256=4zW43K2lSvrMRuPrr9Qu6bqcALPkppMJvnwBhp5CgFU,10233
|
131
123
|
corvic_generated/feature/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
132
|
-
corvic_generated/feature/v2/feature_view_pb2.py,sha256=
|
124
|
+
corvic_generated/feature/v2/feature_view_pb2.py,sha256=90LzWjeSta0_VmsMxJys4W8ASRtlDGp03XNpLg4vggs,10719
|
133
125
|
corvic_generated/feature/v2/feature_view_pb2_grpc.py,sha256=7cFfkmpQvdsuzPaeMrc0wAv2lyiHzmG6G-nWc8l6VHo,10945
|
134
|
-
corvic_generated/feature/v2/space_pb2.py,sha256=
|
126
|
+
corvic_generated/feature/v2/space_pb2.py,sha256=cW-6yIlexXBkY6loaHkhSBVu9m5VJvmdapGYk8nGel8,20296
|
135
127
|
corvic_generated/feature/v2/space_pb2_grpc.py,sha256=OJ8bqDou85cxgOBpMYv-KZ85jZWriXCt1UzT3WuBpIk,18779
|
136
128
|
corvic_generated/ingest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
129
|
corvic_generated/ingest/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
138
130
|
corvic_generated/ingest/v1/service_pb2.py,sha256=ISrq0SoGWJ0ZUxwKy_UC7MvD_7quGZ2ptKe0WlJNW2U,11295
|
139
131
|
corvic_generated/ingest/v1/service_pb2_grpc.py,sha256=YwsDW94WME0XLDjBstEOHCVasrj039w50vADbkRH4QI,23864
|
140
132
|
corvic_generated/ingest/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
141
|
-
corvic_generated/ingest/v2/pipeline_pb2.py,sha256=
|
133
|
+
corvic_generated/ingest/v2/pipeline_pb2.py,sha256=ckoO8us-yg4w31Zx2WbBXsJ5E3DVvEbK3JcCduYgMU0,8297
|
142
134
|
corvic_generated/ingest/v2/pipeline_pb2_grpc.py,sha256=as3vjtRrgdtmXGxnjLOa2DvpbGOHTCM7tSK3FnU9ZgY,8240
|
143
|
-
corvic_generated/ingest/v2/quick_mode_pb2.py,sha256=
|
135
|
+
corvic_generated/ingest/v2/quick_mode_pb2.py,sha256=E2AnKj-M0eeErPTTl4tbpBVpxstipBCIvW9m9wqLv38,4212
|
144
136
|
corvic_generated/ingest/v2/quick_mode_pb2_grpc.py,sha256=Dfg1MPcY32kbsatdsrpVhvi_qdZPtW4wfLITqh9-FtU,4670
|
145
|
-
corvic_generated/ingest/v2/resource_pb2.py,sha256=
|
137
|
+
corvic_generated/ingest/v2/resource_pb2.py,sha256=ulh09FQHL0NlXSJVkrq2lbLC9JDrWaGpGbYgJskb0fw,16260
|
146
138
|
corvic_generated/ingest/v2/resource_pb2_grpc.py,sha256=Er-l9DfnUJVX3PFRAoKZonyPww1X8bn9PcC4ODHfX-g,17045
|
147
|
-
corvic_generated/ingest/v2/room_pb2.py,sha256=
|
139
|
+
corvic_generated/ingest/v2/room_pb2.py,sha256=IwNZEp9_O_JXIP9mp4QBXj4p0oorwdeE_KWJESWWds4,8087
|
148
140
|
corvic_generated/ingest/v2/room_pb2_grpc.py,sha256=X_siQT8CLUwVFMDiP7WiTIMXX528FoPyhhUFUdoZgXI,11422
|
149
|
-
corvic_generated/ingest/v2/source_pb2.py,sha256=
|
141
|
+
corvic_generated/ingest/v2/source_pb2.py,sha256=xbyS_qIz3i5Q5Tao08vzjMUnOCfBsQ13AWFBPIBF9I0,12215
|
150
142
|
corvic_generated/ingest/v2/source_pb2_grpc.py,sha256=DxOe2g2DNvl2pzbXGOY7jILiHLiLKevx7-e7W0Gg3iY,11874
|
151
|
-
corvic_generated/ingest/v2/table_pb2.py,sha256=
|
143
|
+
corvic_generated/ingest/v2/table_pb2.py,sha256=cSElAvX-ahbYEixcAzSoAFj8d_j4NUULjqCQeSVw8kE,8155
|
152
144
|
corvic_generated/ingest/v2/table_pb2_grpc.py,sha256=tVs7wMWyAfvHcCQEiUOHLwaptKxgMFG6E7Ki9vNmmvQ,8151
|
153
145
|
corvic_generated/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
154
146
|
corvic_generated/model/v1alpha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
155
|
-
corvic_generated/model/v1alpha/models_pb2.py,sha256=
|
147
|
+
corvic_generated/model/v1alpha/models_pb2.py,sha256=SXwKhVaGvZobLZNy8nNsz13zDN57SioxZy8lpH1TUYo,8874
|
156
148
|
corvic_generated/model/v1alpha/models_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
|
157
149
|
corvic_generated/orm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
150
|
corvic_generated/orm/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -170,10 +162,6 @@ corvic_generated/orm/v1/space_pb2.py,sha256=grI4123GBbA-iHnbtbK8xyfIv1lZL1hDl3q4
|
|
170
162
|
corvic_generated/orm/v1/space_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
|
171
163
|
corvic_generated/orm/v1/table_pb2.py,sha256=QQwgItxOncMAM_BG9tWX4K3_vYgtlsGoOXocExcQTJI,40062
|
172
164
|
corvic_generated/orm/v1/table_pb2_grpc.py,sha256=ixBOrA7wwNxEQCRT1kO2N_LayeFYEdFJjVRkkhesWbY,4558
|
173
|
-
corvic_generated/query/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
174
|
-
corvic_generated/query/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
175
|
-
corvic_generated/query/v1/query_pb2.py,sha256=cRHixYUF9eihJ2GGL9r3Ny49cfsK_zWsBCnLv23JzYs,2831
|
176
|
-
corvic_generated/query/v1/query_pb2_grpc.py,sha256=eUJ8PCQ1gGh_jJ57QtizvZnb5dAUw5FG11SwGK4mTtU,2692
|
177
165
|
corvic_generated/status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
178
166
|
corvic_generated/status/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
179
167
|
corvic_generated/status/v1/event_pb2.py,sha256=KIgPFDq3PbMkwar6-dtdaVUoUSwO_3ujlG4YXisgYwo,2205
|
@@ -182,17 +170,13 @@ corvic_generated/status/v1/service_pb2.py,sha256=CKXPX2ahq8O4cFhPpt6wo6l--6VZcgj
|
|
182
170
|
corvic_generated/status/v1/service_pb2_grpc.py,sha256=y-a5ldrphWlNJW-yKswyjNmXokK4-5bbEEfczjagJHo,2736
|
183
171
|
corvic_generated/algorithm/graph/v1/graph_pb2.pyi,sha256=KCuFoF_oj1UM6Ho-p7jfEK5XHKyUq9RNBdLtyPHObBo,1199
|
184
172
|
corvic_generated/algorithm/graph/v1/graph_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
185
|
-
corvic_generated/chat/v1/service_pb2.pyi,sha256=iabNe0VyNMsIJGNqmhfbRYeiBhzsU8POdBpjTACetPM,5554
|
186
|
-
corvic_generated/chat/v1/service_pb2_grpc.pyi,sha256=9bZeagkccoC9gMxKPz2XO7TZaQGFdchGsprju5QAH5o,4535
|
187
|
-
corvic_generated/completion/v1/service_pb2.pyi,sha256=gWcunnjJ2gknykF6u_7IOzqmTeAcFT9K0o-7JYdNmRc,9901
|
188
|
-
corvic_generated/completion/v1/service_pb2_grpc.pyi,sha256=ru5rR05kzIP7fqVMGkGKELC3p4bVz8zfCDcvEVeNofY,4557
|
189
173
|
corvic_generated/embedding/v1/models_pb2.pyi,sha256=yM8zBLxeARMolH1lRJLO4hNKWKAHF0xsygAKmMufBj0,4270
|
190
174
|
corvic_generated/embedding/v1/models_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
191
175
|
corvic_generated/feature/v1/experiment_pb2.pyi,sha256=0UMOnoNbWSsMygd97plbKdPrBZe212qOPJHY7MLsNco,8081
|
192
176
|
corvic_generated/feature/v1/experiment_pb2_grpc.pyi,sha256=F16nFllTQa5UQ3L_aSVmPMl1qeNbNGQ8piSEyBDEFg0,5823
|
193
177
|
corvic_generated/feature/v1/space_pb2.pyi,sha256=n8ntvEwKty8DyhLIZXCLZp9fEy97WucEcLPdu3Sm9Fw,6933
|
194
178
|
corvic_generated/feature/v1/space_pb2_grpc.pyi,sha256=9Uiq5RktKOhFeNCsO4HnH1DsP_vUuJVL_q89irLfkTI,6478
|
195
|
-
corvic_generated/feature/v2/feature_view_pb2.pyi,sha256=
|
179
|
+
corvic_generated/feature/v2/feature_view_pb2.pyi,sha256=qX2oDpnwrKtAuxQ_S3ow3-rhA8SKGsyhElEu8aWO2vQ,5380
|
196
180
|
corvic_generated/feature/v2/feature_view_pb2_grpc.pyi,sha256=DBzKaij5EvK5ev2FBtkX6ov-H0AtsgeGGbRtjS-T8BE,7109
|
197
181
|
corvic_generated/feature/v2/space_pb2.pyi,sha256=CzvwNq2htgLu_IVu3LgWtlb6Pow2gB0HIiIXpyXoDBI,14047
|
198
182
|
corvic_generated/feature/v2/space_pb2_grpc.pyi,sha256=9011aCTfJYWjgK5UoiS9NjRKIJSDjuX51DB5tw5xc10,8267
|
@@ -200,7 +184,7 @@ corvic_generated/ingest/v1/service_pb2.pyi,sha256=e2KYl6sQ11MyePRGkKU5gi05_uCF7c
|
|
200
184
|
corvic_generated/ingest/v1/service_pb2_grpc.pyi,sha256=phnkwO0XzxuZZhL-BICXfYv7Z9TcNxLQ_eMZFCEz1g0,14052
|
201
185
|
corvic_generated/ingest/v2/pipeline_pb2.pyi,sha256=gHZOZqWuWHodaeC9jILerzPAL_7FH5NuhiOoDlmzI6c,5520
|
202
186
|
corvic_generated/ingest/v2/pipeline_pb2_grpc.pyi,sha256=jZgC4p2o1ZHanRGtXm4cNAYhPnW8DDAFstX9XRFWq-8,3884
|
203
|
-
corvic_generated/ingest/v2/quick_mode_pb2.pyi,sha256=
|
187
|
+
corvic_generated/ingest/v2/quick_mode_pb2.pyi,sha256=j8SAHdekgUuFyQgBmHKcYThD6lagsQDB-3iueBIYJX0,2512
|
204
188
|
corvic_generated/ingest/v2/quick_mode_pb2_grpc.pyi,sha256=DSiD0kV3Ffwsa7ZripP6LNHPu8Zbdo2hc48T-6ha54s,2369
|
205
189
|
corvic_generated/ingest/v2/resource_pb2.pyi,sha256=2k1C7ItaNRwzXWRAlEGCS0lgbdOZUAkS-60qBPQX9dk,9138
|
206
190
|
corvic_generated/ingest/v2/resource_pb2_grpc.pyi,sha256=4B-lF9IiGMNhgmz7QpuLtNpt9pisBP0DogRbrMkoyeA,11446
|
@@ -210,7 +194,7 @@ corvic_generated/ingest/v2/source_pb2.pyi,sha256=k7FdbgurQLk0JA1WiTUerznzxLv8b50
|
|
210
194
|
corvic_generated/ingest/v2/source_pb2_grpc.pyi,sha256=VG5gpql2SREHgqMC_ycT-QJBVpPeSYKOYS2COgGrZa4,6195
|
211
195
|
corvic_generated/ingest/v2/table_pb2.pyi,sha256=p22F8kv0HfM-9OzGP88bLofxmUtxfLR5eVN0HOxXiEo,4382
|
212
196
|
corvic_generated/ingest/v2/table_pb2_grpc.pyi,sha256=AEXYNtrU4xyENumcCrkD2FmFV7T1UVidxxeZ5pyE4Qc,4554
|
213
|
-
corvic_generated/model/v1alpha/models_pb2.pyi,sha256=
|
197
|
+
corvic_generated/model/v1alpha/models_pb2.pyi,sha256=oYTzdIn4nODb4rGcUuGaCO6ksA0KneGQM6yXt--R9bA,11751
|
214
198
|
corvic_generated/model/v1alpha/models_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
215
199
|
corvic_generated/orm/v1/agent_pb2.pyi,sha256=AxcZC0AJqiOyu_5quSMR-E0MjVhDY7b5ym4uZa7WFug,4670
|
216
200
|
corvic_generated/orm/v1/agent_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
@@ -226,11 +210,9 @@ corvic_generated/orm/v1/space_pb2.pyi,sha256=qKMymobwu_qQAlFxayifiUkQBpjrK9tAgoQ
|
|
226
210
|
corvic_generated/orm/v1/space_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
227
211
|
corvic_generated/orm/v1/table_pb2.pyi,sha256=FsWPyzsP-1Ocj4rEyFHPHHCLmgX-135lH9zHLcVB33I,50224
|
228
212
|
corvic_generated/orm/v1/table_pb2_grpc.pyi,sha256=K4hyNndkiKpxt9PYxcn_98RTpb4yxET3Um2rDe3VJTI,2499
|
229
|
-
corvic_generated/query/v1/query_pb2.pyi,sha256=scOTjQSNmG1mPrgx9cMN8anovQMpfJDSJnoMN0P8J1s,2972
|
230
|
-
corvic_generated/query/v1/query_pb2_grpc.pyi,sha256=Uy_oO0HSK_QlJsjneYktgFi67gMcq9GtEsM5I1CoPy8,1494
|
231
213
|
corvic_generated/status/v1/event_pb2.pyi,sha256=eU-ibrYpvEAJSIDlSa62-bC96AQU1ykFi3_sQ1RzBvo,2027
|
232
214
|
corvic_generated/status/v1/event_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
233
215
|
corvic_generated/status/v1/service_pb2.pyi,sha256=iXLR2FOKQJpBgvBzpD2kVwcYOCksP2aRwK4JYaI9CBw,558
|
234
216
|
corvic_generated/status/v1/service_pb2_grpc.pyi,sha256=OoAnaZ64FD0UTzPoRhYvQU8ecoilhHj3ySjSfHbVDaU,1501
|
235
|
-
corvic/engine/_native.pyd,sha256=
|
236
|
-
corvic_engine-0.3.
|
217
|
+
corvic/engine/_native.pyd,sha256=K3CKBlWL7gZ_iDSAF7GXAvgihs7LkdAiuYXtZWCPvTQ,438272
|
218
|
+
corvic_engine-0.3.0rc59.dist-info/RECORD,,
|
@@ -17,73 +17,65 @@ 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\"\
|
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')
|
21
21
|
|
22
22
|
_globals = globals()
|
23
23
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
24
24
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'corvic.feature.v2.feature_view_pb2', _globals)
|
25
25
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
26
26
|
DESCRIPTOR._options = None
|
27
|
-
_globals['_OUTPUTENTITY'].fields_by_name['source_id']._options = None
|
28
|
-
_globals['_OUTPUTENTITY'].fields_by_name['source_id']._serialized_options = b'\272H]\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
29
27
|
_globals['_OUTPUTSOURCE'].fields_by_name['source_id']._options = None
|
30
|
-
_globals['_OUTPUTSOURCE'].fields_by_name['source_id']._serialized_options = b'\
|
31
|
-
_globals['_FEATUREVIEWENTRY'].fields_by_name['id']._options = None
|
32
|
-
_globals['_FEATUREVIEWENTRY'].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\')'
|
33
|
-
_globals['_FEATUREVIEWENTRY'].fields_by_name['room_id']._options = None
|
34
|
-
_globals['_FEATUREVIEWENTRY'].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\')'
|
28
|
+
_globals['_OUTPUTSOURCE'].fields_by_name['source_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\')'
|
35
29
|
_globals['_FEATUREVIEWENTRY'].fields_by_name['name']._options = None
|
36
30
|
_globals['_FEATUREVIEWENTRY'].fields_by_name['name']._serialized_options = b'\272H\004r\002\020\001'
|
37
31
|
_globals['_GETFEATUREVIEWREQUEST'].fields_by_name['id']._options = None
|
38
|
-
_globals['_GETFEATUREVIEWREQUEST'].fields_by_name['id']._serialized_options = b'\
|
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\')'
|
39
33
|
_globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._options = None
|
40
|
-
_globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._serialized_options = b'\
|
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'
|
41
35
|
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['room_id']._options = None
|
42
|
-
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['room_id']._serialized_options = b'\
|
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\')'
|
43
37
|
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['name']._options = None
|
44
|
-
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['name']._serialized_options = b'\272H\
|
38
|
+
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['name']._serialized_options = b'\272H\007r\005\020\001\030\310\001'
|
39
|
+
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['description']._options = None
|
40
|
+
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['description']._serialized_options = b'\272H\005r\003\030\350\007'
|
45
41
|
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['source_ids']._options = None
|
46
|
-
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['source_ids']._serialized_options = b'\
|
42
|
+
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['source_ids']._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\')'
|
47
43
|
_globals['_DELETEFEATUREVIEWREQUEST'].fields_by_name['id']._options = None
|
48
|
-
_globals['_DELETEFEATUREVIEWREQUEST'].fields_by_name['id']._serialized_options = b'\
|
44
|
+
_globals['_DELETEFEATUREVIEWREQUEST'].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\')'
|
49
45
|
_globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST'].fields_by_name['source_ids']._options = None
|
50
|
-
_globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST'].fields_by_name['source_ids']._serialized_options = b'\
|
46
|
+
_globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST'].fields_by_name['source_ids']._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\')'
|
51
47
|
_globals['_FEATUREVIEWSERVICE'].methods_by_name['GetFeatureView']._options = None
|
52
48
|
_globals['_FEATUREVIEWSERVICE'].methods_by_name['GetFeatureView']._serialized_options = b'\220\002\001'
|
53
49
|
_globals['_FEATUREVIEWSERVICE'].methods_by_name['ListFeatureViews']._options = None
|
54
50
|
_globals['_FEATUREVIEWSERVICE'].methods_by_name['ListFeatureViews']._serialized_options = b'\220\002\001'
|
55
51
|
_globals['_FEATUREVIEWSERVICE'].methods_by_name['GetFeatureViewRelationships']._options = None
|
56
52
|
_globals['_FEATUREVIEWSERVICE'].methods_by_name['GetFeatureViewRelationships']._serialized_options = b'\220\002\001'
|
57
|
-
_globals['
|
58
|
-
_globals['
|
59
|
-
_globals['
|
60
|
-
_globals['
|
61
|
-
_globals['
|
62
|
-
_globals['
|
63
|
-
_globals['
|
64
|
-
_globals['
|
65
|
-
_globals['
|
66
|
-
_globals['
|
67
|
-
_globals['
|
68
|
-
_globals['
|
69
|
-
_globals['
|
70
|
-
_globals['
|
71
|
-
_globals['
|
72
|
-
_globals['
|
73
|
-
_globals['
|
74
|
-
_globals['
|
75
|
-
_globals['
|
76
|
-
_globals['
|
77
|
-
_globals['
|
78
|
-
_globals['
|
79
|
-
_globals['
|
80
|
-
_globals['
|
81
|
-
_globals['
|
82
|
-
_globals['
|
83
|
-
_globals['
|
84
|
-
_globals['
|
85
|
-
_globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_start=2641
|
86
|
-
_globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_end=2768
|
87
|
-
_globals['_FEATUREVIEWSERVICE']._serialized_start=2771
|
88
|
-
_globals['_FEATUREVIEWSERVICE']._serialized_end=3389
|
53
|
+
_globals['_OUTPUTSOURCE']._serialized_start=154
|
54
|
+
_globals['_OUTPUTSOURCE']._serialized_end=302
|
55
|
+
_globals['_FEATUREVIEWENTRY']._serialized_start=305
|
56
|
+
_globals['_FEATUREVIEWENTRY']._serialized_end=592
|
57
|
+
_globals['_GETFEATUREVIEWREQUEST']._serialized_start=595
|
58
|
+
_globals['_GETFEATUREVIEWREQUEST']._serialized_end=738
|
59
|
+
_globals['_GETFEATUREVIEWRESPONSE']._serialized_start=740
|
60
|
+
_globals['_GETFEATUREVIEWRESPONSE']._serialized_end=847
|
61
|
+
_globals['_LISTFEATUREVIEWSREQUEST']._serialized_start=850
|
62
|
+
_globals['_LISTFEATUREVIEWSREQUEST']._serialized_end=1006
|
63
|
+
_globals['_LISTFEATUREVIEWSRESPONSE']._serialized_start=1008
|
64
|
+
_globals['_LISTFEATUREVIEWSRESPONSE']._serialized_end=1121
|
65
|
+
_globals['_CREATEFEATUREVIEWREQUEST']._serialized_start=1124
|
66
|
+
_globals['_CREATEFEATUREVIEWREQUEST']._serialized_end=1591
|
67
|
+
_globals['_CREATEFEATUREVIEWRESPONSE']._serialized_start=1593
|
68
|
+
_globals['_CREATEFEATUREVIEWRESPONSE']._serialized_end=1703
|
69
|
+
_globals['_DELETEFEATUREVIEWREQUEST']._serialized_start=1706
|
70
|
+
_globals['_DELETEFEATUREVIEWREQUEST']._serialized_end=1852
|
71
|
+
_globals['_DELETEFEATUREVIEWRESPONSE']._serialized_start=1854
|
72
|
+
_globals['_DELETEFEATUREVIEWRESPONSE']._serialized_end=1881
|
73
|
+
_globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_start=1884
|
74
|
+
_globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_end=2155
|
75
|
+
_globals['_SOURCERELATIONSHIP']._serialized_start=2157
|
76
|
+
_globals['_SOURCERELATIONSHIP']._serialized_end=2242
|
77
|
+
_globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_start=2244
|
78
|
+
_globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_end=2371
|
79
|
+
_globals['_FEATUREVIEWSERVICE']._serialized_start=2374
|
80
|
+
_globals['_FEATUREVIEWSERVICE']._serialized_end=2992
|
89
81
|
# @@protoc_insertion_point(module_scope)
|
@@ -8,20 +8,6 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
|
|
8
8
|
|
9
9
|
DESCRIPTOR: _descriptor.FileDescriptor
|
10
10
|
|
11
|
-
class OutputEntity(_message.Message):
|
12
|
-
__slots__ = ("name", "source_id")
|
13
|
-
NAME_FIELD_NUMBER: _ClassVar[int]
|
14
|
-
SOURCE_ID_FIELD_NUMBER: _ClassVar[int]
|
15
|
-
name: str
|
16
|
-
source_id: str
|
17
|
-
def __init__(self, name: _Optional[str] = ..., source_id: _Optional[str] = ...) -> None: ...
|
18
|
-
|
19
|
-
class OutputEntities(_message.Message):
|
20
|
-
__slots__ = ("output_entities",)
|
21
|
-
OUTPUT_ENTITIES_FIELD_NUMBER: _ClassVar[int]
|
22
|
-
output_entities: _containers.RepeatedCompositeFieldContainer[OutputEntity]
|
23
|
-
def __init__(self, output_entities: _Optional[_Iterable[_Union[OutputEntity, _Mapping]]] = ...) -> None: ...
|
24
|
-
|
25
11
|
class OutputSource(_message.Message):
|
26
12
|
__slots__ = ("source_id",)
|
27
13
|
SOURCE_ID_FIELD_NUMBER: _ClassVar[int]
|