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