sapiopycommons 2025.8.18a708__py3-none-any.whl → 2025.8.18a710__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 (47) hide show
  1. sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.py +43 -0
  2. sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.pyi +31 -0
  3. sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2_grpc.py +24 -0
  4. sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.py +123 -0
  5. sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.pyi +598 -0
  6. sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2_grpc.py +24 -0
  7. sapiopycommons/ai/api/plan/converter/proto/converter_pb2.py +50 -0
  8. sapiopycommons/ai/api/plan/converter/proto/converter_pb2.pyi +61 -0
  9. sapiopycommons/ai/api/plan/converter/proto/converter_pb2_grpc.py +149 -0
  10. sapiopycommons/ai/api/plan/item/proto/item_container_pb2.py +55 -0
  11. sapiopycommons/ai/api/plan/item/proto/item_container_pb2.pyi +88 -0
  12. sapiopycommons/ai/api/plan/item/proto/item_container_pb2_grpc.py +24 -0
  13. sapiopycommons/ai/api/plan/proto/step_output_pb2.py +45 -0
  14. sapiopycommons/ai/api/plan/proto/step_output_pb2.pyi +42 -0
  15. sapiopycommons/ai/api/plan/proto/step_output_pb2_grpc.py +24 -0
  16. sapiopycommons/ai/api/plan/proto/step_pb2.py +43 -0
  17. sapiopycommons/ai/api/plan/proto/step_pb2.pyi +43 -0
  18. sapiopycommons/ai/api/plan/proto/step_pb2_grpc.py +24 -0
  19. sapiopycommons/ai/api/plan/script/proto/script_pb2.py +59 -0
  20. sapiopycommons/ai/api/plan/script/proto/script_pb2.pyi +102 -0
  21. sapiopycommons/ai/api/plan/script/proto/script_pb2_grpc.py +153 -0
  22. sapiopycommons/ai/api/plan/tool/proto/entry_pb2.py +41 -0
  23. sapiopycommons/ai/api/plan/tool/proto/entry_pb2.pyi +35 -0
  24. sapiopycommons/ai/api/plan/tool/proto/entry_pb2_grpc.py +24 -0
  25. sapiopycommons/ai/api/plan/tool/proto/tool_pb2.py +75 -0
  26. sapiopycommons/ai/api/plan/tool/proto/tool_pb2.pyi +237 -0
  27. sapiopycommons/ai/api/plan/tool/proto/tool_pb2_grpc.py +154 -0
  28. sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2.py +39 -0
  29. sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2.pyi +32 -0
  30. sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2_grpc.py +24 -0
  31. sapiopycommons/ai/converter_service_base.py +116 -0
  32. sapiopycommons/ai/protobuf_utils.py +504 -0
  33. sapiopycommons/ai/server.py +104 -0
  34. sapiopycommons/ai/test_client.py +341 -0
  35. sapiopycommons/ai/tool_service_base.py +923 -0
  36. sapiopycommons/callbacks/callback_util.py +16 -26
  37. sapiopycommons/flowcyto/flow_cyto.py +24 -2
  38. sapiopycommons/general/accession_service.py +28 -2
  39. sapiopycommons/multimodal/multimodal.py +24 -2
  40. sapiopycommons/webhook/webservice_handlers.py +1 -1
  41. {sapiopycommons-2025.8.18a708.dist-info → sapiopycommons-2025.8.18a710.dist-info}/METADATA +2 -2
  42. {sapiopycommons-2025.8.18a708.dist-info → sapiopycommons-2025.8.18a710.dist-info}/RECORD +44 -12
  43. sapiopycommons/ai/tool_of_tools.py +0 -917
  44. sapiopycommons/files/assay_plate_reader.py +0 -93
  45. sapiopycommons/files/file_text_converter.py +0 -207
  46. {sapiopycommons-2025.8.18a708.dist-info → sapiopycommons-2025.8.18a710.dist-info}/WHEEL +0 -0
  47. {sapiopycommons-2025.8.18a708.dist-info → sapiopycommons-2025.8.18a710.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 FieldTypePbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
10
+ __slots__ = ()
11
+ FIELD_TYPE_UNSPECIFIED: _ClassVar[FieldTypePbo]
12
+ BOOLEAN: _ClassVar[FieldTypePbo]
13
+ DOUBLE: _ClassVar[FieldTypePbo]
14
+ ENUM: _ClassVar[FieldTypePbo]
15
+ LONG: _ClassVar[FieldTypePbo]
16
+ INTEGER: _ClassVar[FieldTypePbo]
17
+ SHORT: _ClassVar[FieldTypePbo]
18
+ STRING: _ClassVar[FieldTypePbo]
19
+ DATE: _ClassVar[FieldTypePbo]
20
+ ACTION: _ClassVar[FieldTypePbo]
21
+ SELECTION: _ClassVar[FieldTypePbo]
22
+ PARENTLINK: _ClassVar[FieldTypePbo]
23
+ IDENTIFIER: _ClassVar[FieldTypePbo]
24
+ PICKLIST: _ClassVar[FieldTypePbo]
25
+ LINK: _ClassVar[FieldTypePbo]
26
+ MULTIPARENTLINK: _ClassVar[FieldTypePbo]
27
+ CHILDLINK: _ClassVar[FieldTypePbo]
28
+ AUTO_ACCESSION: _ClassVar[FieldTypePbo]
29
+ DATE_RANGE: _ClassVar[FieldTypePbo]
30
+ SIDE_LINK: _ClassVar[FieldTypePbo]
31
+ ACTION_STRING: _ClassVar[FieldTypePbo]
32
+ FILE_BLOB: _ClassVar[FieldTypePbo]
33
+
34
+ class SortDirectionPbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
35
+ __slots__ = ()
36
+ SORT_DIRECTION_UNSPECIFIED: _ClassVar[SortDirectionPbo]
37
+ SORT_DIRECTION_ASCENDING: _ClassVar[SortDirectionPbo]
38
+ SORT_DIRECTION_DESCENDING: _ClassVar[SortDirectionPbo]
39
+ SORT_DIRECTION_NONE: _ClassVar[SortDirectionPbo]
40
+
41
+ class FontSizePbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
42
+ __slots__ = ()
43
+ FONT_SIZE_UNSPECIFIED: _ClassVar[FontSizePbo]
44
+ FONT_SIZE_SMALL: _ClassVar[FontSizePbo]
45
+ FONT_SIZE_MEDIUM: _ClassVar[FontSizePbo]
46
+ FONT_SIZE_LARGE: _ClassVar[FontSizePbo]
47
+
48
+ class TextDecorationPbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
49
+ __slots__ = ()
50
+ TEXT_DECORATION_UNSPECIFIED: _ClassVar[TextDecorationPbo]
51
+ TEXT_DECORATION_NONE: _ClassVar[TextDecorationPbo]
52
+ TEXT_DECORATION_UNDERLINE: _ClassVar[TextDecorationPbo]
53
+ TEXT_DECORATION_STRIKETHROUGH: _ClassVar[TextDecorationPbo]
54
+
55
+ class StringFormatPbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
56
+ __slots__ = ()
57
+ STRING_FORMAT_UNSPECIFIED: _ClassVar[StringFormatPbo]
58
+ STRING_FORMAT_PHONE: _ClassVar[StringFormatPbo]
59
+ STRING_FORMAT_EMAIL: _ClassVar[StringFormatPbo]
60
+
61
+ class DoubleFormatPbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
62
+ __slots__ = ()
63
+ DOUBLE_FORMAT_UNSPECIFIED: _ClassVar[DoubleFormatPbo]
64
+ DOUBLE_FORMAT_CURRENCY: _ClassVar[DoubleFormatPbo]
65
+ DOUBLE_FORMAT_PERCENTAGE: _ClassVar[DoubleFormatPbo]
66
+ FIELD_TYPE_UNSPECIFIED: FieldTypePbo
67
+ BOOLEAN: FieldTypePbo
68
+ DOUBLE: FieldTypePbo
69
+ ENUM: FieldTypePbo
70
+ LONG: FieldTypePbo
71
+ INTEGER: FieldTypePbo
72
+ SHORT: FieldTypePbo
73
+ STRING: FieldTypePbo
74
+ DATE: FieldTypePbo
75
+ ACTION: FieldTypePbo
76
+ SELECTION: FieldTypePbo
77
+ PARENTLINK: FieldTypePbo
78
+ IDENTIFIER: FieldTypePbo
79
+ PICKLIST: FieldTypePbo
80
+ LINK: FieldTypePbo
81
+ MULTIPARENTLINK: FieldTypePbo
82
+ CHILDLINK: FieldTypePbo
83
+ AUTO_ACCESSION: FieldTypePbo
84
+ DATE_RANGE: FieldTypePbo
85
+ SIDE_LINK: FieldTypePbo
86
+ ACTION_STRING: FieldTypePbo
87
+ FILE_BLOB: FieldTypePbo
88
+ SORT_DIRECTION_UNSPECIFIED: SortDirectionPbo
89
+ SORT_DIRECTION_ASCENDING: SortDirectionPbo
90
+ SORT_DIRECTION_DESCENDING: SortDirectionPbo
91
+ SORT_DIRECTION_NONE: SortDirectionPbo
92
+ FONT_SIZE_UNSPECIFIED: FontSizePbo
93
+ FONT_SIZE_SMALL: FontSizePbo
94
+ FONT_SIZE_MEDIUM: FontSizePbo
95
+ FONT_SIZE_LARGE: FontSizePbo
96
+ TEXT_DECORATION_UNSPECIFIED: TextDecorationPbo
97
+ TEXT_DECORATION_NONE: TextDecorationPbo
98
+ TEXT_DECORATION_UNDERLINE: TextDecorationPbo
99
+ TEXT_DECORATION_STRIKETHROUGH: TextDecorationPbo
100
+ STRING_FORMAT_UNSPECIFIED: StringFormatPbo
101
+ STRING_FORMAT_PHONE: StringFormatPbo
102
+ STRING_FORMAT_EMAIL: StringFormatPbo
103
+ DOUBLE_FORMAT_UNSPECIFIED: DoubleFormatPbo
104
+ DOUBLE_FORMAT_CURRENCY: DoubleFormatPbo
105
+ DOUBLE_FORMAT_PERCENTAGE: DoubleFormatPbo
106
+
107
+ class FieldValidatorPbo(_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 ColorRangePbo(_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 BooleanDependentFieldEntryPbo(_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 SelectionDependentFieldEntryPbo(_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 EnumDependentFieldEntryPbo(_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 ProcessDetailEntryPbo(_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 BooleanPropertiesPbo(_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[BooleanDependentFieldEntryPbo]
164
+ is_hide_disabled_fields: bool
165
+ def __init__(self, default_value: bool = ..., is_process_todo_item: bool = ..., dependent_fields: _Optional[_Iterable[_Union[BooleanDependentFieldEntryPbo, _Mapping]]] = ..., is_hide_disabled_fields: bool = ...) -> None: ...
166
+
167
+ class DatePropertiesPbo(_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 DoublePropertiesPbo(_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: DoubleFormatPbo
191
+ color_ranges: _containers.RepeatedCompositeFieldContainer[ColorRangePbo]
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[DoubleFormatPbo, str]] = ..., color_ranges: _Optional[_Iterable[_Union[ColorRangePbo, _Mapping]]] = ..., scientific_notation_min_digits_from_decimal_point: _Optional[int] = ...) -> None: ...
194
+
195
+ class IntegerPropertiesPbo(_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[ColorRangePbo]
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[ColorRangePbo, _Mapping]]] = ..., scientific_notation_min_digits_from_decimal_point: _Optional[int] = ..., scientific_notation_precision: _Optional[int] = ...) -> None: ...
212
+
213
+ class LongPropertiesPbo(_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[ColorRangePbo]
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[ColorRangePbo, _Mapping]]] = ..., scientific_notation_min_digits_from_decimal_point: _Optional[int] = ..., scientific_notation_precision: _Optional[int] = ...) -> None: ...
230
+
231
+ class ShortPropertiesPbo(_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[ColorRangePbo]
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[ColorRangePbo, _Mapping]]] = ..., scientific_notation_min_digits_from_decimal_point: _Optional[int] = ..., scientific_notation_precision: _Optional[int] = ...) -> None: ...
248
+
249
+ class SelectionPropertiesPbo(_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: ProcessDetailEntryPbo
264
+ def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[ProcessDetailEntryPbo, _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: FieldValidatorPbo
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, ProcessDetailEntryPbo]
297
+ dependent_fields: _containers.RepeatedCompositeFieldContainer[SelectionDependentFieldEntryPbo]
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[FieldValidatorPbo, _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, ProcessDetailEntryPbo]] = ..., dependent_fields: _Optional[_Iterable[_Union[SelectionDependentFieldEntryPbo, _Mapping]]] = ..., is_hide_disabled_fields: bool = ...) -> None: ...
300
+
301
+ class StringPropertiesPbo(_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: StringFormatPbo
324
+ is_auto_size: bool
325
+ field_validator: FieldValidatorPbo
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[StringFormatPbo, str]] = ..., is_auto_size: bool = ..., field_validator: _Optional[_Union[FieldValidatorPbo, _Mapping]] = ..., preserve_padding: bool = ...) -> None: ...
328
+
329
+ class SideLinkPropertiesPbo(_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 PickListPropertiesPbo(_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: ProcessDetailEntryPbo
356
+ def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[ProcessDetailEntryPbo, _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: FieldValidatorPbo
376
+ color_mapping: _containers.ScalarMap[str, str]
377
+ auto_clear_field_list: _containers.RepeatedScalarFieldContainer[str]
378
+ process_detail_map: _containers.MessageMap[str, ProcessDetailEntryPbo]
379
+ dependent_fields: _containers.RepeatedCompositeFieldContainer[SelectionDependentFieldEntryPbo]
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[FieldValidatorPbo, _Mapping]] = ..., color_mapping: _Optional[_Mapping[str, str]] = ..., auto_clear_field_list: _Optional[_Iterable[str]] = ..., process_detail_map: _Optional[_Mapping[str, ProcessDetailEntryPbo]] = ..., dependent_fields: _Optional[_Iterable[_Union[SelectionDependentFieldEntryPbo, _Mapping]]] = ..., is_hide_disabled_fields: bool = ...) -> None: ...
382
+
383
+ class ParentLinkPropertiesPbo(_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 MultiParentPropertiesPbo(_message.Message):
390
+ __slots__ = ()
391
+ def __init__(self) -> None: ...
392
+
393
+ class IdentifierPropertiesPbo(_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 FileBlobPropertiesPbo(_message.Message):
400
+ __slots__ = ()
401
+ def __init__(self) -> None: ...
402
+
403
+ class EnumPropertiesPbo(_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[EnumDependentFieldEntryPbo]
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[EnumDependentFieldEntryPbo, _Mapping]]] = ..., is_hide_disabled_fields: bool = ...) -> None: ...
425
+
426
+ class DateRangePropertiesPbo(_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 ChildLinkPropertiesPbo(_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 ActionStringPropertiesPbo(_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: FieldValidatorPbo
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[FieldValidatorPbo, _Mapping]] = ..., direct_edit: bool = ...) -> None: ...
459
+
460
+ class ActionPropertiesPbo(_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 AccessionPropertiesPbo(_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 VeloxFieldDefPbo(_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: FieldTypePbo
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: SortDirectionPbo
555
+ sort_order: int
556
+ tag: str
557
+ approve_edit: bool
558
+ workflow_only_editing: bool
559
+ font_size: FontSizePbo
560
+ bold_font: bool
561
+ italic_font: bool
562
+ text_decoration: TextDecorationPbo
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: BooleanPropertiesPbo
573
+ date_properties: DatePropertiesPbo
574
+ double_properties: DoublePropertiesPbo
575
+ integer_properties: IntegerPropertiesPbo
576
+ long_properties: LongPropertiesPbo
577
+ selection_properties: SelectionPropertiesPbo
578
+ string_properties: StringPropertiesPbo
579
+ side_link_properties: SideLinkPropertiesPbo
580
+ short_properties: ShortPropertiesPbo
581
+ picklist_properties: PickListPropertiesPbo
582
+ parent_link_properties: ParentLinkPropertiesPbo
583
+ multi_parent_properties: MultiParentPropertiesPbo
584
+ identifier_properties: IdentifierPropertiesPbo
585
+ file_blob_properties: FileBlobPropertiesPbo
586
+ enum_properties: EnumPropertiesPbo
587
+ date_range_properties: DateRangePropertiesPbo
588
+ child_link_properties: ChildLinkPropertiesPbo
589
+ action_string_properties: ActionStringPropertiesPbo
590
+ action_properties: ActionPropertiesPbo
591
+ accession_properties: AccessionPropertiesPbo
592
+ def __init__(self, data_field_type: _Optional[_Union[FieldTypePbo, 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[SortDirectionPbo, str]] = ..., sort_order: _Optional[int] = ..., tag: _Optional[str] = ..., approve_edit: bool = ..., workflow_only_editing: bool = ..., font_size: _Optional[_Union[FontSizePbo, str]] = ..., bold_font: bool = ..., italic_font: bool = ..., text_decoration: _Optional[_Union[TextDecorationPbo, 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[BooleanPropertiesPbo, _Mapping]] = ..., date_properties: _Optional[_Union[DatePropertiesPbo, _Mapping]] = ..., double_properties: _Optional[_Union[DoublePropertiesPbo, _Mapping]] = ..., integer_properties: _Optional[_Union[IntegerPropertiesPbo, _Mapping]] = ..., long_properties: _Optional[_Union[LongPropertiesPbo, _Mapping]] = ..., selection_properties: _Optional[_Union[SelectionPropertiesPbo, _Mapping]] = ..., string_properties: _Optional[_Union[StringPropertiesPbo, _Mapping]] = ..., side_link_properties: _Optional[_Union[SideLinkPropertiesPbo, _Mapping]] = ..., short_properties: _Optional[_Union[ShortPropertiesPbo, _Mapping]] = ..., picklist_properties: _Optional[_Union[PickListPropertiesPbo, _Mapping]] = ..., parent_link_properties: _Optional[_Union[ParentLinkPropertiesPbo, _Mapping]] = ..., multi_parent_properties: _Optional[_Union[MultiParentPropertiesPbo, _Mapping]] = ..., identifier_properties: _Optional[_Union[IdentifierPropertiesPbo, _Mapping]] = ..., file_blob_properties: _Optional[_Union[FileBlobPropertiesPbo, _Mapping]] = ..., enum_properties: _Optional[_Union[EnumPropertiesPbo, _Mapping]] = ..., date_range_properties: _Optional[_Union[DateRangePropertiesPbo, _Mapping]] = ..., child_link_properties: _Optional[_Union[ChildLinkPropertiesPbo, _Mapping]] = ..., action_string_properties: _Optional[_Union[ActionStringPropertiesPbo, _Mapping]] = ..., action_properties: _Optional[_Union[ActionPropertiesPbo, _Mapping]] = ..., accession_properties: _Optional[_Union[AccessionPropertiesPbo, _Mapping]] = ...) -> None: ...
593
+
594
+ class VeloxFieldDefListPbo(_message.Message):
595
+ __slots__ = ("field_definitions",)
596
+ FIELD_DEFINITIONS_FIELD_NUMBER: _ClassVar[int]
597
+ field_definitions: _containers.RepeatedCompositeFieldContainer[VeloxFieldDefPbo]
598
+ def __init__(self, field_definitions: _Optional[_Iterable[_Union[VeloxFieldDefPbo, _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
+ )