sapiopycommons 2025.4.22a490__py3-none-any.whl → 2025.4.24a492__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of sapiopycommons might be problematic. Click here for more details.

Files changed (21) hide show
  1. sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.py +123 -0
  2. sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.pyi +598 -0
  3. sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2_grpc.py +24 -0
  4. sapiopycommons/ai/api/plan/proto/step_output_pb2.py +13 -13
  5. sapiopycommons/ai/api/plan/proto/step_output_pb2_grpc.py +2 -2
  6. sapiopycommons/ai/api/plan/proto/step_pb2.py +11 -11
  7. sapiopycommons/ai/api/plan/proto/step_pb2_grpc.py +2 -2
  8. sapiopycommons/ai/api/plan/script/proto/script_pb2.py +18 -16
  9. sapiopycommons/ai/api/plan/script/proto/script_pb2.pyi +33 -7
  10. sapiopycommons/ai/api/plan/script/proto/script_pb2_grpc.py +15 -15
  11. sapiopycommons/ai/api/plan/tool/proto/entry_pb2.py +25 -25
  12. sapiopycommons/ai/api/plan/tool/proto/entry_pb2_grpc.py +2 -2
  13. sapiopycommons/ai/api/plan/tool/proto/tool_pb2.py +36 -24
  14. sapiopycommons/ai/api/plan/tool/proto/tool_pb2.pyi +134 -6
  15. sapiopycommons/ai/api/plan/tool/proto/tool_pb2_grpc.py +15 -15
  16. sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2.py +7 -7
  17. sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2_grpc.py +2 -2
  18. {sapiopycommons-2025.4.22a490.dist-info → sapiopycommons-2025.4.24a492.dist-info}/METADATA +1 -1
  19. {sapiopycommons-2025.4.22a490.dist-info → sapiopycommons-2025.4.24a492.dist-info}/RECORD +21 -18
  20. {sapiopycommons-2025.4.22a490.dist-info → sapiopycommons-2025.4.24a492.dist-info}/WHEEL +0 -0
  21. {sapiopycommons-2025.4.22a490.dist-info → sapiopycommons-2025.4.24a492.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,598 @@
1
+ from google.protobuf.internal import containers as _containers
2
+ from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class FieldTypeProto(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ FIELD_TYPE_UNSPECIFIED: _ClassVar[FieldTypeProto]
12
+ BOOLEAN: _ClassVar[FieldTypeProto]
13
+ DOUBLE: _ClassVar[FieldTypeProto]
14
+ ENUM: _ClassVar[FieldTypeProto]
15
+ LONG: _ClassVar[FieldTypeProto]
16
+ INTEGER: _ClassVar[FieldTypeProto]
17
+ SHORT: _ClassVar[FieldTypeProto]
18
+ STRING: _ClassVar[FieldTypeProto]
19
+ DATE: _ClassVar[FieldTypeProto]
20
+ ACTION: _ClassVar[FieldTypeProto]
21
+ SELECTION: _ClassVar[FieldTypeProto]
22
+ PARENTLINK: _ClassVar[FieldTypeProto]
23
+ IDENTIFIER: _ClassVar[FieldTypeProto]
24
+ PICKLIST: _ClassVar[FieldTypeProto]
25
+ LINK: _ClassVar[FieldTypeProto]
26
+ MULTIPARENTLINK: _ClassVar[FieldTypeProto]
27
+ CHILDLINK: _ClassVar[FieldTypeProto]
28
+ AUTO_ACCESSION: _ClassVar[FieldTypeProto]
29
+ DATE_RANGE: _ClassVar[FieldTypeProto]
30
+ SIDE_LINK: _ClassVar[FieldTypeProto]
31
+ ACTION_STRING: _ClassVar[FieldTypeProto]
32
+ FILE_BLOB: _ClassVar[FieldTypeProto]
33
+
34
+ class SortDirectionProto(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
+ __slots__ = ()
36
+ SORT_DIRECTION_UNSPECIFIED: _ClassVar[SortDirectionProto]
37
+ SORT_DIRECTION_ASCENDING: _ClassVar[SortDirectionProto]
38
+ SORT_DIRECTION_DESCENDING: _ClassVar[SortDirectionProto]
39
+ SORT_DIRECTION_NONE: _ClassVar[SortDirectionProto]
40
+
41
+ class FontSizeProto(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
42
+ __slots__ = ()
43
+ FONT_SIZE_UNSPECIFIED: _ClassVar[FontSizeProto]
44
+ FONT_SIZE_SMALL: _ClassVar[FontSizeProto]
45
+ FONT_SIZE_MEDIUM: _ClassVar[FontSizeProto]
46
+ FONT_SIZE_LARGE: _ClassVar[FontSizeProto]
47
+
48
+ class TextDecorationProto(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
49
+ __slots__ = ()
50
+ TEXT_DECORATION_UNSPECIFIED: _ClassVar[TextDecorationProto]
51
+ TEXT_DECORATION_NONE: _ClassVar[TextDecorationProto]
52
+ TEXT_DECORATION_UNDERLINE: _ClassVar[TextDecorationProto]
53
+ TEXT_DECORATION_STRIKETHROUGH: _ClassVar[TextDecorationProto]
54
+
55
+ class StringFormatProto(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
56
+ __slots__ = ()
57
+ STRING_FORMAT_UNSPECIFIED: _ClassVar[StringFormatProto]
58
+ STRING_FORMAT_PHONE: _ClassVar[StringFormatProto]
59
+ STRING_FORMAT_EMAIL: _ClassVar[StringFormatProto]
60
+
61
+ class DoubleFormatProto(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
62
+ __slots__ = ()
63
+ DOUBLE_FORMAT_UNSPECIFIED: _ClassVar[DoubleFormatProto]
64
+ DOUBLE_FORMAT_CURRENCY: _ClassVar[DoubleFormatProto]
65
+ DOUBLE_FORMAT_PERCENTAGE: _ClassVar[DoubleFormatProto]
66
+ FIELD_TYPE_UNSPECIFIED: FieldTypeProto
67
+ BOOLEAN: FieldTypeProto
68
+ DOUBLE: FieldTypeProto
69
+ ENUM: FieldTypeProto
70
+ LONG: FieldTypeProto
71
+ INTEGER: FieldTypeProto
72
+ SHORT: FieldTypeProto
73
+ STRING: FieldTypeProto
74
+ DATE: FieldTypeProto
75
+ ACTION: FieldTypeProto
76
+ SELECTION: FieldTypeProto
77
+ PARENTLINK: FieldTypeProto
78
+ IDENTIFIER: FieldTypeProto
79
+ PICKLIST: FieldTypeProto
80
+ LINK: FieldTypeProto
81
+ MULTIPARENTLINK: FieldTypeProto
82
+ CHILDLINK: FieldTypeProto
83
+ AUTO_ACCESSION: FieldTypeProto
84
+ DATE_RANGE: FieldTypeProto
85
+ SIDE_LINK: FieldTypeProto
86
+ ACTION_STRING: FieldTypeProto
87
+ FILE_BLOB: FieldTypeProto
88
+ SORT_DIRECTION_UNSPECIFIED: SortDirectionProto
89
+ SORT_DIRECTION_ASCENDING: SortDirectionProto
90
+ SORT_DIRECTION_DESCENDING: SortDirectionProto
91
+ SORT_DIRECTION_NONE: SortDirectionProto
92
+ FONT_SIZE_UNSPECIFIED: FontSizeProto
93
+ FONT_SIZE_SMALL: FontSizeProto
94
+ FONT_SIZE_MEDIUM: FontSizeProto
95
+ FONT_SIZE_LARGE: FontSizeProto
96
+ TEXT_DECORATION_UNSPECIFIED: TextDecorationProto
97
+ TEXT_DECORATION_NONE: TextDecorationProto
98
+ TEXT_DECORATION_UNDERLINE: TextDecorationProto
99
+ TEXT_DECORATION_STRIKETHROUGH: TextDecorationProto
100
+ STRING_FORMAT_UNSPECIFIED: StringFormatProto
101
+ STRING_FORMAT_PHONE: StringFormatProto
102
+ STRING_FORMAT_EMAIL: StringFormatProto
103
+ DOUBLE_FORMAT_UNSPECIFIED: DoubleFormatProto
104
+ DOUBLE_FORMAT_CURRENCY: DoubleFormatProto
105
+ DOUBLE_FORMAT_PERCENTAGE: DoubleFormatProto
106
+
107
+ class FieldValidatorProto(_message.Message):
108
+ __slots__ = ("validation_regex", "error_message")
109
+ VALIDATION_REGEX_FIELD_NUMBER: _ClassVar[int]
110
+ ERROR_MESSAGE_FIELD_NUMBER: _ClassVar[int]
111
+ validation_regex: str
112
+ error_message: str
113
+ def __init__(self, validation_regex: _Optional[str] = ..., error_message: _Optional[str] = ...) -> None: ...
114
+
115
+ class ColorRangeProto(_message.Message):
116
+ __slots__ = ("from_value", "to_value", "color")
117
+ FROM_VALUE_FIELD_NUMBER: _ClassVar[int]
118
+ TO_VALUE_FIELD_NUMBER: _ClassVar[int]
119
+ COLOR_FIELD_NUMBER: _ClassVar[int]
120
+ from_value: float
121
+ to_value: float
122
+ color: str
123
+ def __init__(self, from_value: _Optional[float] = ..., to_value: _Optional[float] = ..., color: _Optional[str] = ...) -> None: ...
124
+
125
+ class BooleanDependentFieldEntry(_message.Message):
126
+ __slots__ = ("key", "dependent_field_names")
127
+ KEY_FIELD_NUMBER: _ClassVar[int]
128
+ DEPENDENT_FIELD_NAMES_FIELD_NUMBER: _ClassVar[int]
129
+ key: bool
130
+ dependent_field_names: _containers.RepeatedScalarFieldContainer[str]
131
+ def __init__(self, key: bool = ..., dependent_field_names: _Optional[_Iterable[str]] = ...) -> None: ...
132
+
133
+ class SelectionDependentFieldEntry(_message.Message):
134
+ __slots__ = ("key", "dependent_field_names")
135
+ KEY_FIELD_NUMBER: _ClassVar[int]
136
+ DEPENDENT_FIELD_NAMES_FIELD_NUMBER: _ClassVar[int]
137
+ key: str
138
+ dependent_field_names: _containers.RepeatedScalarFieldContainer[str]
139
+ def __init__(self, key: _Optional[str] = ..., dependent_field_names: _Optional[_Iterable[str]] = ...) -> None: ...
140
+
141
+ class EnumDependentFieldEntry(_message.Message):
142
+ __slots__ = ("key", "dependent_field_names")
143
+ KEY_FIELD_NUMBER: _ClassVar[int]
144
+ DEPENDENT_FIELD_NAMES_FIELD_NUMBER: _ClassVar[int]
145
+ key: int
146
+ dependent_field_names: _containers.RepeatedScalarFieldContainer[str]
147
+ def __init__(self, key: _Optional[int] = ..., dependent_field_names: _Optional[_Iterable[str]] = ...) -> None: ...
148
+
149
+ class ProcessDetailEntry(_message.Message):
150
+ __slots__ = ("todo_fields",)
151
+ TODO_FIELDS_FIELD_NUMBER: _ClassVar[int]
152
+ todo_fields: _containers.RepeatedScalarFieldContainer[str]
153
+ def __init__(self, todo_fields: _Optional[_Iterable[str]] = ...) -> None: ...
154
+
155
+ class BooleanProperties(_message.Message):
156
+ __slots__ = ("default_value", "is_process_todo_item", "dependent_fields", "is_hide_disabled_fields")
157
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
158
+ IS_PROCESS_TODO_ITEM_FIELD_NUMBER: _ClassVar[int]
159
+ DEPENDENT_FIELDS_FIELD_NUMBER: _ClassVar[int]
160
+ IS_HIDE_DISABLED_FIELDS_FIELD_NUMBER: _ClassVar[int]
161
+ default_value: bool
162
+ is_process_todo_item: bool
163
+ dependent_fields: _containers.RepeatedCompositeFieldContainer[BooleanDependentFieldEntry]
164
+ is_hide_disabled_fields: bool
165
+ def __init__(self, default_value: bool = ..., is_process_todo_item: bool = ..., dependent_fields: _Optional[_Iterable[_Union[BooleanDependentFieldEntry, _Mapping]]] = ..., is_hide_disabled_fields: bool = ...) -> None: ...
166
+
167
+ class DateProperties(_message.Message):
168
+ __slots__ = ("default_value", "static_date", "date_time_format")
169
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
170
+ STATIC_DATE_FIELD_NUMBER: _ClassVar[int]
171
+ DATE_TIME_FORMAT_FIELD_NUMBER: _ClassVar[int]
172
+ default_value: str
173
+ static_date: bool
174
+ date_time_format: str
175
+ def __init__(self, default_value: _Optional[str] = ..., static_date: bool = ..., date_time_format: _Optional[str] = ...) -> None: ...
176
+
177
+ class DoubleProperties(_message.Message):
178
+ __slots__ = ("min_value", "max_value", "default_value", "precision", "double_format", "color_ranges", "scientific_notation_min_digits_from_decimal_point")
179
+ MIN_VALUE_FIELD_NUMBER: _ClassVar[int]
180
+ MAX_VALUE_FIELD_NUMBER: _ClassVar[int]
181
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
182
+ PRECISION_FIELD_NUMBER: _ClassVar[int]
183
+ DOUBLE_FORMAT_FIELD_NUMBER: _ClassVar[int]
184
+ COLOR_RANGES_FIELD_NUMBER: _ClassVar[int]
185
+ SCIENTIFIC_NOTATION_MIN_DIGITS_FROM_DECIMAL_POINT_FIELD_NUMBER: _ClassVar[int]
186
+ min_value: float
187
+ max_value: float
188
+ default_value: float
189
+ precision: int
190
+ double_format: DoubleFormatProto
191
+ color_ranges: _containers.RepeatedCompositeFieldContainer[ColorRangeProto]
192
+ scientific_notation_min_digits_from_decimal_point: int
193
+ def __init__(self, min_value: _Optional[float] = ..., max_value: _Optional[float] = ..., default_value: _Optional[float] = ..., precision: _Optional[int] = ..., double_format: _Optional[_Union[DoubleFormatProto, str]] = ..., color_ranges: _Optional[_Iterable[_Union[ColorRangeProto, _Mapping]]] = ..., scientific_notation_min_digits_from_decimal_point: _Optional[int] = ...) -> None: ...
194
+
195
+ class IntegerProperties(_message.Message):
196
+ __slots__ = ("min_value", "max_value", "default_value", "unique_value", "color_ranges", "scientific_notation_min_digits_from_decimal_point", "scientific_notation_precision")
197
+ MIN_VALUE_FIELD_NUMBER: _ClassVar[int]
198
+ MAX_VALUE_FIELD_NUMBER: _ClassVar[int]
199
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
200
+ UNIQUE_VALUE_FIELD_NUMBER: _ClassVar[int]
201
+ COLOR_RANGES_FIELD_NUMBER: _ClassVar[int]
202
+ SCIENTIFIC_NOTATION_MIN_DIGITS_FROM_DECIMAL_POINT_FIELD_NUMBER: _ClassVar[int]
203
+ SCIENTIFIC_NOTATION_PRECISION_FIELD_NUMBER: _ClassVar[int]
204
+ min_value: int
205
+ max_value: int
206
+ default_value: int
207
+ unique_value: bool
208
+ color_ranges: _containers.RepeatedCompositeFieldContainer[ColorRangeProto]
209
+ scientific_notation_min_digits_from_decimal_point: int
210
+ scientific_notation_precision: int
211
+ def __init__(self, min_value: _Optional[int] = ..., max_value: _Optional[int] = ..., default_value: _Optional[int] = ..., unique_value: bool = ..., color_ranges: _Optional[_Iterable[_Union[ColorRangeProto, _Mapping]]] = ..., scientific_notation_min_digits_from_decimal_point: _Optional[int] = ..., scientific_notation_precision: _Optional[int] = ...) -> None: ...
212
+
213
+ class LongProperties(_message.Message):
214
+ __slots__ = ("min_value", "max_value", "default_value", "unique_value", "color_ranges", "scientific_notation_min_digits_from_decimal_point", "scientific_notation_precision")
215
+ MIN_VALUE_FIELD_NUMBER: _ClassVar[int]
216
+ MAX_VALUE_FIELD_NUMBER: _ClassVar[int]
217
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
218
+ UNIQUE_VALUE_FIELD_NUMBER: _ClassVar[int]
219
+ COLOR_RANGES_FIELD_NUMBER: _ClassVar[int]
220
+ SCIENTIFIC_NOTATION_MIN_DIGITS_FROM_DECIMAL_POINT_FIELD_NUMBER: _ClassVar[int]
221
+ SCIENTIFIC_NOTATION_PRECISION_FIELD_NUMBER: _ClassVar[int]
222
+ min_value: int
223
+ max_value: int
224
+ default_value: int
225
+ unique_value: bool
226
+ color_ranges: _containers.RepeatedCompositeFieldContainer[ColorRangeProto]
227
+ scientific_notation_min_digits_from_decimal_point: int
228
+ scientific_notation_precision: int
229
+ def __init__(self, min_value: _Optional[int] = ..., max_value: _Optional[int] = ..., default_value: _Optional[int] = ..., unique_value: bool = ..., color_ranges: _Optional[_Iterable[_Union[ColorRangeProto, _Mapping]]] = ..., scientific_notation_min_digits_from_decimal_point: _Optional[int] = ..., scientific_notation_precision: _Optional[int] = ...) -> None: ...
230
+
231
+ class ShortProperties(_message.Message):
232
+ __slots__ = ("min_value", "max_value", "default_value", "unique_value", "color_ranges", "scientific_notation_min_digits_from_decimal_point", "scientific_notation_precision")
233
+ MIN_VALUE_FIELD_NUMBER: _ClassVar[int]
234
+ MAX_VALUE_FIELD_NUMBER: _ClassVar[int]
235
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
236
+ UNIQUE_VALUE_FIELD_NUMBER: _ClassVar[int]
237
+ COLOR_RANGES_FIELD_NUMBER: _ClassVar[int]
238
+ SCIENTIFIC_NOTATION_MIN_DIGITS_FROM_DECIMAL_POINT_FIELD_NUMBER: _ClassVar[int]
239
+ SCIENTIFIC_NOTATION_PRECISION_FIELD_NUMBER: _ClassVar[int]
240
+ min_value: int
241
+ max_value: int
242
+ default_value: int
243
+ unique_value: bool
244
+ color_ranges: _containers.RepeatedCompositeFieldContainer[ColorRangeProto]
245
+ scientific_notation_min_digits_from_decimal_point: int
246
+ scientific_notation_precision: int
247
+ def __init__(self, min_value: _Optional[int] = ..., max_value: _Optional[int] = ..., default_value: _Optional[int] = ..., unique_value: bool = ..., color_ranges: _Optional[_Iterable[_Union[ColorRangeProto, _Mapping]]] = ..., scientific_notation_min_digits_from_decimal_point: _Optional[int] = ..., scientific_notation_precision: _Optional[int] = ...) -> None: ...
248
+
249
+ class SelectionProperties(_message.Message):
250
+ __slots__ = ("default_value", "list_mode", "auto_sort", "direct_edit", "unique_value", "link_out", "link_out_url", "multi_select", "index_for_search", "is_auto_size", "field_validator", "static_list_values", "color_mapping", "auto_clear_field_list", "process_detail_map", "dependent_fields", "is_hide_disabled_fields")
251
+ class ColorMappingEntry(_message.Message):
252
+ __slots__ = ("key", "value")
253
+ KEY_FIELD_NUMBER: _ClassVar[int]
254
+ VALUE_FIELD_NUMBER: _ClassVar[int]
255
+ key: str
256
+ value: str
257
+ def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
258
+ class ProcessDetailMapEntry(_message.Message):
259
+ __slots__ = ("key", "value")
260
+ KEY_FIELD_NUMBER: _ClassVar[int]
261
+ VALUE_FIELD_NUMBER: _ClassVar[int]
262
+ key: str
263
+ value: ProcessDetailEntry
264
+ def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[ProcessDetailEntry, _Mapping]] = ...) -> None: ...
265
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
266
+ LIST_MODE_FIELD_NUMBER: _ClassVar[int]
267
+ AUTO_SORT_FIELD_NUMBER: _ClassVar[int]
268
+ DIRECT_EDIT_FIELD_NUMBER: _ClassVar[int]
269
+ UNIQUE_VALUE_FIELD_NUMBER: _ClassVar[int]
270
+ LINK_OUT_FIELD_NUMBER: _ClassVar[int]
271
+ LINK_OUT_URL_FIELD_NUMBER: _ClassVar[int]
272
+ MULTI_SELECT_FIELD_NUMBER: _ClassVar[int]
273
+ INDEX_FOR_SEARCH_FIELD_NUMBER: _ClassVar[int]
274
+ IS_AUTO_SIZE_FIELD_NUMBER: _ClassVar[int]
275
+ FIELD_VALIDATOR_FIELD_NUMBER: _ClassVar[int]
276
+ STATIC_LIST_VALUES_FIELD_NUMBER: _ClassVar[int]
277
+ COLOR_MAPPING_FIELD_NUMBER: _ClassVar[int]
278
+ AUTO_CLEAR_FIELD_LIST_FIELD_NUMBER: _ClassVar[int]
279
+ PROCESS_DETAIL_MAP_FIELD_NUMBER: _ClassVar[int]
280
+ DEPENDENT_FIELDS_FIELD_NUMBER: _ClassVar[int]
281
+ IS_HIDE_DISABLED_FIELDS_FIELD_NUMBER: _ClassVar[int]
282
+ default_value: str
283
+ list_mode: str
284
+ auto_sort: bool
285
+ direct_edit: bool
286
+ unique_value: bool
287
+ link_out: bool
288
+ link_out_url: str
289
+ multi_select: bool
290
+ index_for_search: bool
291
+ is_auto_size: bool
292
+ field_validator: FieldValidatorProto
293
+ static_list_values: _containers.RepeatedScalarFieldContainer[str]
294
+ color_mapping: _containers.ScalarMap[str, str]
295
+ auto_clear_field_list: _containers.RepeatedScalarFieldContainer[str]
296
+ process_detail_map: _containers.MessageMap[str, ProcessDetailEntry]
297
+ dependent_fields: _containers.RepeatedCompositeFieldContainer[SelectionDependentFieldEntry]
298
+ is_hide_disabled_fields: bool
299
+ def __init__(self, default_value: _Optional[str] = ..., list_mode: _Optional[str] = ..., auto_sort: bool = ..., direct_edit: bool = ..., unique_value: bool = ..., link_out: bool = ..., link_out_url: _Optional[str] = ..., multi_select: bool = ..., index_for_search: bool = ..., is_auto_size: bool = ..., field_validator: _Optional[_Union[FieldValidatorProto, _Mapping]] = ..., static_list_values: _Optional[_Iterable[str]] = ..., color_mapping: _Optional[_Mapping[str, str]] = ..., auto_clear_field_list: _Optional[_Iterable[str]] = ..., process_detail_map: _Optional[_Mapping[str, ProcessDetailEntry]] = ..., dependent_fields: _Optional[_Iterable[_Union[SelectionDependentFieldEntry, _Mapping]]] = ..., is_hide_disabled_fields: bool = ...) -> None: ...
300
+
301
+ class StringProperties(_message.Message):
302
+ __slots__ = ("default_value", "max_length", "num_lines", "unique_value", "index_for_search", "html_editor", "link_out", "link_out_url", "string_format", "is_auto_size", "field_validator", "preserve_padding")
303
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
304
+ MAX_LENGTH_FIELD_NUMBER: _ClassVar[int]
305
+ NUM_LINES_FIELD_NUMBER: _ClassVar[int]
306
+ UNIQUE_VALUE_FIELD_NUMBER: _ClassVar[int]
307
+ INDEX_FOR_SEARCH_FIELD_NUMBER: _ClassVar[int]
308
+ HTML_EDITOR_FIELD_NUMBER: _ClassVar[int]
309
+ LINK_OUT_FIELD_NUMBER: _ClassVar[int]
310
+ LINK_OUT_URL_FIELD_NUMBER: _ClassVar[int]
311
+ STRING_FORMAT_FIELD_NUMBER: _ClassVar[int]
312
+ IS_AUTO_SIZE_FIELD_NUMBER: _ClassVar[int]
313
+ FIELD_VALIDATOR_FIELD_NUMBER: _ClassVar[int]
314
+ PRESERVE_PADDING_FIELD_NUMBER: _ClassVar[int]
315
+ default_value: str
316
+ max_length: int
317
+ num_lines: int
318
+ unique_value: bool
319
+ index_for_search: bool
320
+ html_editor: bool
321
+ link_out: bool
322
+ link_out_url: str
323
+ string_format: StringFormatProto
324
+ is_auto_size: bool
325
+ field_validator: FieldValidatorProto
326
+ preserve_padding: bool
327
+ def __init__(self, default_value: _Optional[str] = ..., max_length: _Optional[int] = ..., num_lines: _Optional[int] = ..., unique_value: bool = ..., index_for_search: bool = ..., html_editor: bool = ..., link_out: bool = ..., link_out_url: _Optional[str] = ..., string_format: _Optional[_Union[StringFormatProto, str]] = ..., is_auto_size: bool = ..., field_validator: _Optional[_Union[FieldValidatorProto, _Mapping]] = ..., preserve_padding: bool = ...) -> None: ...
328
+
329
+ class SideLinkProperties(_message.Message):
330
+ __slots__ = ("linked_data_type_name", "default_value", "show_in_knowledge_graph", "knowledge_graph_display_name")
331
+ LINKED_DATA_TYPE_NAME_FIELD_NUMBER: _ClassVar[int]
332
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
333
+ SHOW_IN_KNOWLEDGE_GRAPH_FIELD_NUMBER: _ClassVar[int]
334
+ KNOWLEDGE_GRAPH_DISPLAY_NAME_FIELD_NUMBER: _ClassVar[int]
335
+ linked_data_type_name: str
336
+ default_value: int
337
+ show_in_knowledge_graph: bool
338
+ knowledge_graph_display_name: str
339
+ def __init__(self, linked_data_type_name: _Optional[str] = ..., default_value: _Optional[int] = ..., show_in_knowledge_graph: bool = ..., knowledge_graph_display_name: _Optional[str] = ...) -> None: ...
340
+
341
+ class PickListProperties(_message.Message):
342
+ __slots__ = ("default_value", "pick_list_name", "direct_edit", "link_out", "link_out_url", "index_for_search", "field_validator", "color_mapping", "auto_clear_field_list", "process_detail_map", "dependent_fields", "is_hide_disabled_fields")
343
+ class ColorMappingEntry(_message.Message):
344
+ __slots__ = ("key", "value")
345
+ KEY_FIELD_NUMBER: _ClassVar[int]
346
+ VALUE_FIELD_NUMBER: _ClassVar[int]
347
+ key: str
348
+ value: str
349
+ def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
350
+ class ProcessDetailMapEntry(_message.Message):
351
+ __slots__ = ("key", "value")
352
+ KEY_FIELD_NUMBER: _ClassVar[int]
353
+ VALUE_FIELD_NUMBER: _ClassVar[int]
354
+ key: str
355
+ value: ProcessDetailEntry
356
+ def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[ProcessDetailEntry, _Mapping]] = ...) -> None: ...
357
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
358
+ PICK_LIST_NAME_FIELD_NUMBER: _ClassVar[int]
359
+ DIRECT_EDIT_FIELD_NUMBER: _ClassVar[int]
360
+ LINK_OUT_FIELD_NUMBER: _ClassVar[int]
361
+ LINK_OUT_URL_FIELD_NUMBER: _ClassVar[int]
362
+ INDEX_FOR_SEARCH_FIELD_NUMBER: _ClassVar[int]
363
+ FIELD_VALIDATOR_FIELD_NUMBER: _ClassVar[int]
364
+ COLOR_MAPPING_FIELD_NUMBER: _ClassVar[int]
365
+ AUTO_CLEAR_FIELD_LIST_FIELD_NUMBER: _ClassVar[int]
366
+ PROCESS_DETAIL_MAP_FIELD_NUMBER: _ClassVar[int]
367
+ DEPENDENT_FIELDS_FIELD_NUMBER: _ClassVar[int]
368
+ IS_HIDE_DISABLED_FIELDS_FIELD_NUMBER: _ClassVar[int]
369
+ default_value: str
370
+ pick_list_name: str
371
+ direct_edit: bool
372
+ link_out: bool
373
+ link_out_url: str
374
+ index_for_search: bool
375
+ field_validator: FieldValidatorProto
376
+ color_mapping: _containers.ScalarMap[str, str]
377
+ auto_clear_field_list: _containers.RepeatedScalarFieldContainer[str]
378
+ process_detail_map: _containers.MessageMap[str, ProcessDetailEntry]
379
+ dependent_fields: _containers.RepeatedCompositeFieldContainer[SelectionDependentFieldEntry]
380
+ is_hide_disabled_fields: bool
381
+ def __init__(self, default_value: _Optional[str] = ..., pick_list_name: _Optional[str] = ..., direct_edit: bool = ..., link_out: bool = ..., link_out_url: _Optional[str] = ..., index_for_search: bool = ..., field_validator: _Optional[_Union[FieldValidatorProto, _Mapping]] = ..., color_mapping: _Optional[_Mapping[str, str]] = ..., auto_clear_field_list: _Optional[_Iterable[str]] = ..., process_detail_map: _Optional[_Mapping[str, ProcessDetailEntry]] = ..., dependent_fields: _Optional[_Iterable[_Union[SelectionDependentFieldEntry, _Mapping]]] = ..., is_hide_disabled_fields: bool = ...) -> None: ...
382
+
383
+ class ParentLinkProperties(_message.Message):
384
+ __slots__ = ("default_value",)
385
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
386
+ default_value: str
387
+ def __init__(self, default_value: _Optional[str] = ...) -> None: ...
388
+
389
+ class MultiParentProperties(_message.Message):
390
+ __slots__ = ()
391
+ def __init__(self) -> None: ...
392
+
393
+ class IdentifierProperties(_message.Message):
394
+ __slots__ = ("default_value",)
395
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
396
+ default_value: str
397
+ def __init__(self, default_value: _Optional[str] = ...) -> None: ...
398
+
399
+ class FileBlobProperties(_message.Message):
400
+ __slots__ = ()
401
+ def __init__(self) -> None: ...
402
+
403
+ class EnumProperties(_message.Message):
404
+ __slots__ = ("default_value", "values", "color_mapping", "auto_clear_field_list", "dependent_fields", "is_hide_disabled_fields")
405
+ class ColorMappingEntry(_message.Message):
406
+ __slots__ = ("key", "value")
407
+ KEY_FIELD_NUMBER: _ClassVar[int]
408
+ VALUE_FIELD_NUMBER: _ClassVar[int]
409
+ key: str
410
+ value: str
411
+ def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
412
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
413
+ VALUES_FIELD_NUMBER: _ClassVar[int]
414
+ COLOR_MAPPING_FIELD_NUMBER: _ClassVar[int]
415
+ AUTO_CLEAR_FIELD_LIST_FIELD_NUMBER: _ClassVar[int]
416
+ DEPENDENT_FIELDS_FIELD_NUMBER: _ClassVar[int]
417
+ IS_HIDE_DISABLED_FIELDS_FIELD_NUMBER: _ClassVar[int]
418
+ default_value: int
419
+ values: _containers.RepeatedScalarFieldContainer[str]
420
+ color_mapping: _containers.ScalarMap[str, str]
421
+ auto_clear_field_list: _containers.RepeatedScalarFieldContainer[str]
422
+ dependent_fields: _containers.RepeatedCompositeFieldContainer[EnumDependentFieldEntry]
423
+ is_hide_disabled_fields: bool
424
+ def __init__(self, default_value: _Optional[int] = ..., values: _Optional[_Iterable[str]] = ..., color_mapping: _Optional[_Mapping[str, str]] = ..., auto_clear_field_list: _Optional[_Iterable[str]] = ..., dependent_fields: _Optional[_Iterable[_Union[EnumDependentFieldEntry, _Mapping]]] = ..., is_hide_disabled_fields: bool = ...) -> None: ...
425
+
426
+ class DateRangeProperties(_message.Message):
427
+ __slots__ = ("default_value", "is_static", "date_time_format")
428
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
429
+ IS_STATIC_FIELD_NUMBER: _ClassVar[int]
430
+ DATE_TIME_FORMAT_FIELD_NUMBER: _ClassVar[int]
431
+ default_value: str
432
+ is_static: bool
433
+ date_time_format: str
434
+ def __init__(self, default_value: _Optional[str] = ..., is_static: bool = ..., date_time_format: _Optional[str] = ...) -> None: ...
435
+
436
+ class ChildLinkProperties(_message.Message):
437
+ __slots__ = ("default_value",)
438
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
439
+ default_value: int
440
+ def __init__(self, default_value: _Optional[int] = ...) -> None: ...
441
+
442
+ class ActionStringProperties(_message.Message):
443
+ __slots__ = ("default_value", "max_length", "unique_value", "icon_name", "action_plugin_path", "field_validator", "direct_edit")
444
+ DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
445
+ MAX_LENGTH_FIELD_NUMBER: _ClassVar[int]
446
+ UNIQUE_VALUE_FIELD_NUMBER: _ClassVar[int]
447
+ ICON_NAME_FIELD_NUMBER: _ClassVar[int]
448
+ ACTION_PLUGIN_PATH_FIELD_NUMBER: _ClassVar[int]
449
+ FIELD_VALIDATOR_FIELD_NUMBER: _ClassVar[int]
450
+ DIRECT_EDIT_FIELD_NUMBER: _ClassVar[int]
451
+ default_value: str
452
+ max_length: int
453
+ unique_value: bool
454
+ icon_name: str
455
+ action_plugin_path: str
456
+ field_validator: FieldValidatorProto
457
+ direct_edit: bool
458
+ def __init__(self, default_value: _Optional[str] = ..., max_length: _Optional[int] = ..., unique_value: bool = ..., icon_name: _Optional[str] = ..., action_plugin_path: _Optional[str] = ..., field_validator: _Optional[_Union[FieldValidatorProto, _Mapping]] = ..., direct_edit: bool = ...) -> None: ...
459
+
460
+ class ActionProperties(_message.Message):
461
+ __slots__ = ("icon_name", "icon_color", "background_color", "font_color", "action_plugin_path")
462
+ ICON_NAME_FIELD_NUMBER: _ClassVar[int]
463
+ ICON_COLOR_FIELD_NUMBER: _ClassVar[int]
464
+ BACKGROUND_COLOR_FIELD_NUMBER: _ClassVar[int]
465
+ FONT_COLOR_FIELD_NUMBER: _ClassVar[int]
466
+ ACTION_PLUGIN_PATH_FIELD_NUMBER: _ClassVar[int]
467
+ icon_name: str
468
+ icon_color: str
469
+ background_color: str
470
+ font_color: str
471
+ action_plugin_path: str
472
+ def __init__(self, icon_name: _Optional[str] = ..., icon_color: _Optional[str] = ..., background_color: _Optional[str] = ..., font_color: _Optional[str] = ..., action_plugin_path: _Optional[str] = ...) -> None: ...
473
+
474
+ class AccessionProperties(_message.Message):
475
+ __slots__ = ("unique_value", "index_for_search", "link_out", "link_out_url", "sequence_key", "prefix", "suffix", "number_of_digits", "starting_value")
476
+ UNIQUE_VALUE_FIELD_NUMBER: _ClassVar[int]
477
+ INDEX_FOR_SEARCH_FIELD_NUMBER: _ClassVar[int]
478
+ LINK_OUT_FIELD_NUMBER: _ClassVar[int]
479
+ LINK_OUT_URL_FIELD_NUMBER: _ClassVar[int]
480
+ SEQUENCE_KEY_FIELD_NUMBER: _ClassVar[int]
481
+ PREFIX_FIELD_NUMBER: _ClassVar[int]
482
+ SUFFIX_FIELD_NUMBER: _ClassVar[int]
483
+ NUMBER_OF_DIGITS_FIELD_NUMBER: _ClassVar[int]
484
+ STARTING_VALUE_FIELD_NUMBER: _ClassVar[int]
485
+ unique_value: bool
486
+ index_for_search: bool
487
+ link_out: bool
488
+ link_out_url: str
489
+ sequence_key: str
490
+ prefix: str
491
+ suffix: str
492
+ number_of_digits: int
493
+ starting_value: int
494
+ def __init__(self, unique_value: bool = ..., index_for_search: bool = ..., link_out: bool = ..., link_out_url: _Optional[str] = ..., sequence_key: _Optional[str] = ..., prefix: _Optional[str] = ..., suffix: _Optional[str] = ..., number_of_digits: _Optional[int] = ..., starting_value: _Optional[int] = ...) -> None: ...
495
+
496
+ class VeloxFieldDefProto(_message.Message):
497
+ __slots__ = ("data_field_type", "data_field_name", "display_name", "description", "required", "editable", "visible", "identifier", "identifier_order", "sort_direction", "sort_order", "tag", "approve_edit", "workflow_only_editing", "font_size", "bold_font", "italic_font", "text_decoration", "is_key_field", "key_field_order", "is_removable", "is_system_field", "is_restricted", "is_audit_logged", "is_active", "is_for_plugin_use_only", "default_table_column_width", "boolean_properties", "date_properties", "double_properties", "integer_properties", "long_properties", "selection_properties", "string_properties", "side_link_properties", "short_properties", "picklist_properties", "parent_link_properties", "multi_parent_properties", "identifier_properties", "file_blob_properties", "enum_properties", "date_range_properties", "child_link_properties", "action_string_properties", "action_properties", "accession_properties")
498
+ DATA_FIELD_TYPE_FIELD_NUMBER: _ClassVar[int]
499
+ DATA_FIELD_NAME_FIELD_NUMBER: _ClassVar[int]
500
+ DISPLAY_NAME_FIELD_NUMBER: _ClassVar[int]
501
+ DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
502
+ REQUIRED_FIELD_NUMBER: _ClassVar[int]
503
+ EDITABLE_FIELD_NUMBER: _ClassVar[int]
504
+ VISIBLE_FIELD_NUMBER: _ClassVar[int]
505
+ IDENTIFIER_FIELD_NUMBER: _ClassVar[int]
506
+ IDENTIFIER_ORDER_FIELD_NUMBER: _ClassVar[int]
507
+ SORT_DIRECTION_FIELD_NUMBER: _ClassVar[int]
508
+ SORT_ORDER_FIELD_NUMBER: _ClassVar[int]
509
+ TAG_FIELD_NUMBER: _ClassVar[int]
510
+ APPROVE_EDIT_FIELD_NUMBER: _ClassVar[int]
511
+ WORKFLOW_ONLY_EDITING_FIELD_NUMBER: _ClassVar[int]
512
+ FONT_SIZE_FIELD_NUMBER: _ClassVar[int]
513
+ BOLD_FONT_FIELD_NUMBER: _ClassVar[int]
514
+ ITALIC_FONT_FIELD_NUMBER: _ClassVar[int]
515
+ TEXT_DECORATION_FIELD_NUMBER: _ClassVar[int]
516
+ IS_KEY_FIELD_FIELD_NUMBER: _ClassVar[int]
517
+ KEY_FIELD_ORDER_FIELD_NUMBER: _ClassVar[int]
518
+ IS_REMOVABLE_FIELD_NUMBER: _ClassVar[int]
519
+ IS_SYSTEM_FIELD_FIELD_NUMBER: _ClassVar[int]
520
+ IS_RESTRICTED_FIELD_NUMBER: _ClassVar[int]
521
+ IS_AUDIT_LOGGED_FIELD_NUMBER: _ClassVar[int]
522
+ IS_ACTIVE_FIELD_NUMBER: _ClassVar[int]
523
+ IS_FOR_PLUGIN_USE_ONLY_FIELD_NUMBER: _ClassVar[int]
524
+ DEFAULT_TABLE_COLUMN_WIDTH_FIELD_NUMBER: _ClassVar[int]
525
+ BOOLEAN_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
526
+ DATE_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
527
+ DOUBLE_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
528
+ INTEGER_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
529
+ LONG_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
530
+ SELECTION_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
531
+ STRING_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
532
+ SIDE_LINK_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
533
+ SHORT_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
534
+ PICKLIST_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
535
+ PARENT_LINK_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
536
+ MULTI_PARENT_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
537
+ IDENTIFIER_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
538
+ FILE_BLOB_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
539
+ ENUM_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
540
+ DATE_RANGE_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
541
+ CHILD_LINK_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
542
+ ACTION_STRING_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
543
+ ACTION_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
544
+ ACCESSION_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
545
+ data_field_type: FieldTypeProto
546
+ data_field_name: str
547
+ display_name: str
548
+ description: str
549
+ required: bool
550
+ editable: bool
551
+ visible: bool
552
+ identifier: bool
553
+ identifier_order: int
554
+ sort_direction: SortDirectionProto
555
+ sort_order: int
556
+ tag: str
557
+ approve_edit: bool
558
+ workflow_only_editing: bool
559
+ font_size: FontSizeProto
560
+ bold_font: bool
561
+ italic_font: bool
562
+ text_decoration: TextDecorationProto
563
+ is_key_field: bool
564
+ key_field_order: int
565
+ is_removable: bool
566
+ is_system_field: bool
567
+ is_restricted: bool
568
+ is_audit_logged: bool
569
+ is_active: bool
570
+ is_for_plugin_use_only: bool
571
+ default_table_column_width: int
572
+ boolean_properties: BooleanProperties
573
+ date_properties: DateProperties
574
+ double_properties: DoubleProperties
575
+ integer_properties: IntegerProperties
576
+ long_properties: LongProperties
577
+ selection_properties: SelectionProperties
578
+ string_properties: StringProperties
579
+ side_link_properties: SideLinkProperties
580
+ short_properties: ShortProperties
581
+ picklist_properties: PickListProperties
582
+ parent_link_properties: ParentLinkProperties
583
+ multi_parent_properties: MultiParentProperties
584
+ identifier_properties: IdentifierProperties
585
+ file_blob_properties: FileBlobProperties
586
+ enum_properties: EnumProperties
587
+ date_range_properties: DateRangeProperties
588
+ child_link_properties: ChildLinkProperties
589
+ action_string_properties: ActionStringProperties
590
+ action_properties: ActionProperties
591
+ accession_properties: AccessionProperties
592
+ def __init__(self, data_field_type: _Optional[_Union[FieldTypeProto, str]] = ..., data_field_name: _Optional[str] = ..., display_name: _Optional[str] = ..., description: _Optional[str] = ..., required: bool = ..., editable: bool = ..., visible: bool = ..., identifier: bool = ..., identifier_order: _Optional[int] = ..., sort_direction: _Optional[_Union[SortDirectionProto, str]] = ..., sort_order: _Optional[int] = ..., tag: _Optional[str] = ..., approve_edit: bool = ..., workflow_only_editing: bool = ..., font_size: _Optional[_Union[FontSizeProto, str]] = ..., bold_font: bool = ..., italic_font: bool = ..., text_decoration: _Optional[_Union[TextDecorationProto, str]] = ..., is_key_field: bool = ..., key_field_order: _Optional[int] = ..., is_removable: bool = ..., is_system_field: bool = ..., is_restricted: bool = ..., is_audit_logged: bool = ..., is_active: bool = ..., is_for_plugin_use_only: bool = ..., default_table_column_width: _Optional[int] = ..., boolean_properties: _Optional[_Union[BooleanProperties, _Mapping]] = ..., date_properties: _Optional[_Union[DateProperties, _Mapping]] = ..., double_properties: _Optional[_Union[DoubleProperties, _Mapping]] = ..., integer_properties: _Optional[_Union[IntegerProperties, _Mapping]] = ..., long_properties: _Optional[_Union[LongProperties, _Mapping]] = ..., selection_properties: _Optional[_Union[SelectionProperties, _Mapping]] = ..., string_properties: _Optional[_Union[StringProperties, _Mapping]] = ..., side_link_properties: _Optional[_Union[SideLinkProperties, _Mapping]] = ..., short_properties: _Optional[_Union[ShortProperties, _Mapping]] = ..., picklist_properties: _Optional[_Union[PickListProperties, _Mapping]] = ..., parent_link_properties: _Optional[_Union[ParentLinkProperties, _Mapping]] = ..., multi_parent_properties: _Optional[_Union[MultiParentProperties, _Mapping]] = ..., identifier_properties: _Optional[_Union[IdentifierProperties, _Mapping]] = ..., file_blob_properties: _Optional[_Union[FileBlobProperties, _Mapping]] = ..., enum_properties: _Optional[_Union[EnumProperties, _Mapping]] = ..., date_range_properties: _Optional[_Union[DateRangeProperties, _Mapping]] = ..., child_link_properties: _Optional[_Union[ChildLinkProperties, _Mapping]] = ..., action_string_properties: _Optional[_Union[ActionStringProperties, _Mapping]] = ..., action_properties: _Optional[_Union[ActionProperties, _Mapping]] = ..., accession_properties: _Optional[_Union[AccessionProperties, _Mapping]] = ...) -> None: ...
593
+
594
+ class VeloxFieldDefProtoList(_message.Message):
595
+ __slots__ = ("field_definitions",)
596
+ FIELD_DEFINITIONS_FIELD_NUMBER: _ClassVar[int]
597
+ field_definitions: _containers.RepeatedCompositeFieldContainer[VeloxFieldDefProto]
598
+ def __init__(self, field_definitions: _Optional[_Iterable[_Union[VeloxFieldDefProto, _Mapping]]] = ...) -> None: ...
@@ -0,0 +1,24 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+ import warnings
5
+
6
+
7
+ GRPC_GENERATED_VERSION = '1.70.0'
8
+ GRPC_VERSION = grpc.__version__
9
+ _version_not_supported = False
10
+
11
+ try:
12
+ from grpc._utilities import first_version_is_lower
13
+ _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
+ except ImportError:
15
+ _version_not_supported = True
16
+
17
+ if _version_not_supported:
18
+ raise RuntimeError(
19
+ f'The grpc package installed is at version {GRPC_VERSION},'
20
+ + f' but the generated code in sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2_grpc.py depends on'
21
+ + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
+ + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
+ + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
+ )