sapiopycommons 2025.4.25a497__py3-none-any.whl → 2025.4.30a499__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.
- sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.py +43 -0
- sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2.pyi +31 -0
- sapiopycommons/ai/api/fielddefinitions/proto/fields_pb2_grpc.py +24 -0
- sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.py +89 -89
- sapiopycommons/ai/api/fielddefinitions/proto/velox_field_def_pb2.pyi +174 -174
- sapiopycommons/ai/api/plan/proto/step_output_pb2.py +11 -11
- sapiopycommons/ai/api/plan/proto/step_output_pb2.pyi +27 -27
- sapiopycommons/ai/api/plan/proto/step_pb2.py +9 -9
- sapiopycommons/ai/api/plan/proto/step_pb2.pyi +10 -10
- sapiopycommons/ai/api/plan/script/proto/script_pb2.py +13 -13
- sapiopycommons/ai/api/plan/script/proto/script_pb2.pyi +39 -39
- sapiopycommons/ai/api/plan/script/proto/script_pb2_grpc.py +12 -12
- sapiopycommons/ai/api/plan/tool/proto/entry_pb2.py +23 -23
- sapiopycommons/ai/api/plan/tool/proto/entry_pb2.pyi +63 -63
- sapiopycommons/ai/api/plan/tool/proto/tool_pb2.py +25 -31
- sapiopycommons/ai/api/plan/tool/proto/tool_pb2.pyi +136 -158
- sapiopycommons/ai/api/plan/tool/proto/tool_pb2_grpc.py +12 -12
- sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2.py +5 -5
- sapiopycommons/ai/api/session/proto/sapio_conn_info_pb2.pyi +8 -8
- sapiopycommons/ai/protobuf_utils.py +452 -0
- sapiopycommons/ai/tool_service_base.py +288 -162
- {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/METADATA +1 -1
- {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/RECORD +25 -22
- sapiopycommons/ai/tool_of_tools.py +0 -917
- {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/WHEEL +0 -0
- {sapiopycommons-2025.4.25a497.dist-info → sapiopycommons-2025.4.30a499.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,105 +6,105 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
|
|
|
6
6
|
|
|
7
7
|
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
8
|
|
|
9
|
-
class
|
|
9
|
+
class FieldTypePbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
10
|
__slots__ = ()
|
|
11
|
-
FIELD_TYPE_UNSPECIFIED: _ClassVar[
|
|
12
|
-
BOOLEAN: _ClassVar[
|
|
13
|
-
DOUBLE: _ClassVar[
|
|
14
|
-
ENUM: _ClassVar[
|
|
15
|
-
LONG: _ClassVar[
|
|
16
|
-
INTEGER: _ClassVar[
|
|
17
|
-
SHORT: _ClassVar[
|
|
18
|
-
STRING: _ClassVar[
|
|
19
|
-
DATE: _ClassVar[
|
|
20
|
-
ACTION: _ClassVar[
|
|
21
|
-
SELECTION: _ClassVar[
|
|
22
|
-
PARENTLINK: _ClassVar[
|
|
23
|
-
IDENTIFIER: _ClassVar[
|
|
24
|
-
PICKLIST: _ClassVar[
|
|
25
|
-
LINK: _ClassVar[
|
|
26
|
-
MULTIPARENTLINK: _ClassVar[
|
|
27
|
-
CHILDLINK: _ClassVar[
|
|
28
|
-
AUTO_ACCESSION: _ClassVar[
|
|
29
|
-
DATE_RANGE: _ClassVar[
|
|
30
|
-
SIDE_LINK: _ClassVar[
|
|
31
|
-
ACTION_STRING: _ClassVar[
|
|
32
|
-
FILE_BLOB: _ClassVar[
|
|
33
|
-
|
|
34
|
-
class
|
|
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
35
|
__slots__ = ()
|
|
36
|
-
SORT_DIRECTION_UNSPECIFIED: _ClassVar[
|
|
37
|
-
SORT_DIRECTION_ASCENDING: _ClassVar[
|
|
38
|
-
SORT_DIRECTION_DESCENDING: _ClassVar[
|
|
39
|
-
SORT_DIRECTION_NONE: _ClassVar[
|
|
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
40
|
|
|
41
|
-
class
|
|
41
|
+
class FontSizePbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
42
42
|
__slots__ = ()
|
|
43
|
-
FONT_SIZE_UNSPECIFIED: _ClassVar[
|
|
44
|
-
FONT_SIZE_SMALL: _ClassVar[
|
|
45
|
-
FONT_SIZE_MEDIUM: _ClassVar[
|
|
46
|
-
FONT_SIZE_LARGE: _ClassVar[
|
|
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
47
|
|
|
48
|
-
class
|
|
48
|
+
class TextDecorationPbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
49
49
|
__slots__ = ()
|
|
50
|
-
TEXT_DECORATION_UNSPECIFIED: _ClassVar[
|
|
51
|
-
TEXT_DECORATION_NONE: _ClassVar[
|
|
52
|
-
TEXT_DECORATION_UNDERLINE: _ClassVar[
|
|
53
|
-
TEXT_DECORATION_STRIKETHROUGH: _ClassVar[
|
|
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
54
|
|
|
55
|
-
class
|
|
55
|
+
class StringFormatPbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
56
56
|
__slots__ = ()
|
|
57
|
-
STRING_FORMAT_UNSPECIFIED: _ClassVar[
|
|
58
|
-
STRING_FORMAT_PHONE: _ClassVar[
|
|
59
|
-
STRING_FORMAT_EMAIL: _ClassVar[
|
|
57
|
+
STRING_FORMAT_UNSPECIFIED: _ClassVar[StringFormatPbo]
|
|
58
|
+
STRING_FORMAT_PHONE: _ClassVar[StringFormatPbo]
|
|
59
|
+
STRING_FORMAT_EMAIL: _ClassVar[StringFormatPbo]
|
|
60
60
|
|
|
61
|
-
class
|
|
61
|
+
class DoubleFormatPbo(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
62
62
|
__slots__ = ()
|
|
63
|
-
DOUBLE_FORMAT_UNSPECIFIED: _ClassVar[
|
|
64
|
-
DOUBLE_FORMAT_CURRENCY: _ClassVar[
|
|
65
|
-
DOUBLE_FORMAT_PERCENTAGE: _ClassVar[
|
|
66
|
-
FIELD_TYPE_UNSPECIFIED:
|
|
67
|
-
BOOLEAN:
|
|
68
|
-
DOUBLE:
|
|
69
|
-
ENUM:
|
|
70
|
-
LONG:
|
|
71
|
-
INTEGER:
|
|
72
|
-
SHORT:
|
|
73
|
-
STRING:
|
|
74
|
-
DATE:
|
|
75
|
-
ACTION:
|
|
76
|
-
SELECTION:
|
|
77
|
-
PARENTLINK:
|
|
78
|
-
IDENTIFIER:
|
|
79
|
-
PICKLIST:
|
|
80
|
-
LINK:
|
|
81
|
-
MULTIPARENTLINK:
|
|
82
|
-
CHILDLINK:
|
|
83
|
-
AUTO_ACCESSION:
|
|
84
|
-
DATE_RANGE:
|
|
85
|
-
SIDE_LINK:
|
|
86
|
-
ACTION_STRING:
|
|
87
|
-
FILE_BLOB:
|
|
88
|
-
SORT_DIRECTION_UNSPECIFIED:
|
|
89
|
-
SORT_DIRECTION_ASCENDING:
|
|
90
|
-
SORT_DIRECTION_DESCENDING:
|
|
91
|
-
SORT_DIRECTION_NONE:
|
|
92
|
-
FONT_SIZE_UNSPECIFIED:
|
|
93
|
-
FONT_SIZE_SMALL:
|
|
94
|
-
FONT_SIZE_MEDIUM:
|
|
95
|
-
FONT_SIZE_LARGE:
|
|
96
|
-
TEXT_DECORATION_UNSPECIFIED:
|
|
97
|
-
TEXT_DECORATION_NONE:
|
|
98
|
-
TEXT_DECORATION_UNDERLINE:
|
|
99
|
-
TEXT_DECORATION_STRIKETHROUGH:
|
|
100
|
-
STRING_FORMAT_UNSPECIFIED:
|
|
101
|
-
STRING_FORMAT_PHONE:
|
|
102
|
-
STRING_FORMAT_EMAIL:
|
|
103
|
-
DOUBLE_FORMAT_UNSPECIFIED:
|
|
104
|
-
DOUBLE_FORMAT_CURRENCY:
|
|
105
|
-
DOUBLE_FORMAT_PERCENTAGE:
|
|
106
|
-
|
|
107
|
-
class
|
|
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
108
|
__slots__ = ("validation_regex", "error_message")
|
|
109
109
|
VALIDATION_REGEX_FIELD_NUMBER: _ClassVar[int]
|
|
110
110
|
ERROR_MESSAGE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -112,7 +112,7 @@ class FieldValidatorProto(_message.Message):
|
|
|
112
112
|
error_message: str
|
|
113
113
|
def __init__(self, validation_regex: _Optional[str] = ..., error_message: _Optional[str] = ...) -> None: ...
|
|
114
114
|
|
|
115
|
-
class
|
|
115
|
+
class ColorRangePbo(_message.Message):
|
|
116
116
|
__slots__ = ("from_value", "to_value", "color")
|
|
117
117
|
FROM_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
118
118
|
TO_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -122,7 +122,7 @@ class ColorRangeProto(_message.Message):
|
|
|
122
122
|
color: str
|
|
123
123
|
def __init__(self, from_value: _Optional[float] = ..., to_value: _Optional[float] = ..., color: _Optional[str] = ...) -> None: ...
|
|
124
124
|
|
|
125
|
-
class
|
|
125
|
+
class BooleanDependentFieldEntryPbo(_message.Message):
|
|
126
126
|
__slots__ = ("key", "dependent_field_names")
|
|
127
127
|
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
128
128
|
DEPENDENT_FIELD_NAMES_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -130,7 +130,7 @@ class BooleanDependentFieldEntry(_message.Message):
|
|
|
130
130
|
dependent_field_names: _containers.RepeatedScalarFieldContainer[str]
|
|
131
131
|
def __init__(self, key: bool = ..., dependent_field_names: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
132
132
|
|
|
133
|
-
class
|
|
133
|
+
class SelectionDependentFieldEntryPbo(_message.Message):
|
|
134
134
|
__slots__ = ("key", "dependent_field_names")
|
|
135
135
|
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
136
136
|
DEPENDENT_FIELD_NAMES_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -138,7 +138,7 @@ class SelectionDependentFieldEntry(_message.Message):
|
|
|
138
138
|
dependent_field_names: _containers.RepeatedScalarFieldContainer[str]
|
|
139
139
|
def __init__(self, key: _Optional[str] = ..., dependent_field_names: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
140
140
|
|
|
141
|
-
class
|
|
141
|
+
class EnumDependentFieldEntryPbo(_message.Message):
|
|
142
142
|
__slots__ = ("key", "dependent_field_names")
|
|
143
143
|
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
144
144
|
DEPENDENT_FIELD_NAMES_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -146,13 +146,13 @@ class EnumDependentFieldEntry(_message.Message):
|
|
|
146
146
|
dependent_field_names: _containers.RepeatedScalarFieldContainer[str]
|
|
147
147
|
def __init__(self, key: _Optional[int] = ..., dependent_field_names: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
148
148
|
|
|
149
|
-
class
|
|
149
|
+
class ProcessDetailEntryPbo(_message.Message):
|
|
150
150
|
__slots__ = ("todo_fields",)
|
|
151
151
|
TODO_FIELDS_FIELD_NUMBER: _ClassVar[int]
|
|
152
152
|
todo_fields: _containers.RepeatedScalarFieldContainer[str]
|
|
153
153
|
def __init__(self, todo_fields: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
154
154
|
|
|
155
|
-
class
|
|
155
|
+
class BooleanPropertiesPbo(_message.Message):
|
|
156
156
|
__slots__ = ("default_value", "is_process_todo_item", "dependent_fields", "is_hide_disabled_fields")
|
|
157
157
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
158
158
|
IS_PROCESS_TODO_ITEM_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -160,11 +160,11 @@ class BooleanProperties(_message.Message):
|
|
|
160
160
|
IS_HIDE_DISABLED_FIELDS_FIELD_NUMBER: _ClassVar[int]
|
|
161
161
|
default_value: bool
|
|
162
162
|
is_process_todo_item: bool
|
|
163
|
-
dependent_fields: _containers.RepeatedCompositeFieldContainer[
|
|
163
|
+
dependent_fields: _containers.RepeatedCompositeFieldContainer[BooleanDependentFieldEntryPbo]
|
|
164
164
|
is_hide_disabled_fields: bool
|
|
165
|
-
def __init__(self, default_value: bool = ..., is_process_todo_item: bool = ..., dependent_fields: _Optional[_Iterable[_Union[
|
|
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
166
|
|
|
167
|
-
class
|
|
167
|
+
class DatePropertiesPbo(_message.Message):
|
|
168
168
|
__slots__ = ("default_value", "static_date", "date_time_format")
|
|
169
169
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
170
170
|
STATIC_DATE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -174,7 +174,7 @@ class DateProperties(_message.Message):
|
|
|
174
174
|
date_time_format: str
|
|
175
175
|
def __init__(self, default_value: _Optional[str] = ..., static_date: bool = ..., date_time_format: _Optional[str] = ...) -> None: ...
|
|
176
176
|
|
|
177
|
-
class
|
|
177
|
+
class DoublePropertiesPbo(_message.Message):
|
|
178
178
|
__slots__ = ("min_value", "max_value", "default_value", "precision", "double_format", "color_ranges", "scientific_notation_min_digits_from_decimal_point")
|
|
179
179
|
MIN_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
180
180
|
MAX_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -187,12 +187,12 @@ class DoubleProperties(_message.Message):
|
|
|
187
187
|
max_value: float
|
|
188
188
|
default_value: float
|
|
189
189
|
precision: int
|
|
190
|
-
double_format:
|
|
191
|
-
color_ranges: _containers.RepeatedCompositeFieldContainer[
|
|
190
|
+
double_format: DoubleFormatPbo
|
|
191
|
+
color_ranges: _containers.RepeatedCompositeFieldContainer[ColorRangePbo]
|
|
192
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[
|
|
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
194
|
|
|
195
|
-
class
|
|
195
|
+
class IntegerPropertiesPbo(_message.Message):
|
|
196
196
|
__slots__ = ("min_value", "max_value", "default_value", "unique_value", "color_ranges", "scientific_notation_min_digits_from_decimal_point", "scientific_notation_precision")
|
|
197
197
|
MIN_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
198
198
|
MAX_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -205,12 +205,12 @@ class IntegerProperties(_message.Message):
|
|
|
205
205
|
max_value: int
|
|
206
206
|
default_value: int
|
|
207
207
|
unique_value: bool
|
|
208
|
-
color_ranges: _containers.RepeatedCompositeFieldContainer[
|
|
208
|
+
color_ranges: _containers.RepeatedCompositeFieldContainer[ColorRangePbo]
|
|
209
209
|
scientific_notation_min_digits_from_decimal_point: int
|
|
210
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[
|
|
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
212
|
|
|
213
|
-
class
|
|
213
|
+
class LongPropertiesPbo(_message.Message):
|
|
214
214
|
__slots__ = ("min_value", "max_value", "default_value", "unique_value", "color_ranges", "scientific_notation_min_digits_from_decimal_point", "scientific_notation_precision")
|
|
215
215
|
MIN_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
216
216
|
MAX_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -223,12 +223,12 @@ class LongProperties(_message.Message):
|
|
|
223
223
|
max_value: int
|
|
224
224
|
default_value: int
|
|
225
225
|
unique_value: bool
|
|
226
|
-
color_ranges: _containers.RepeatedCompositeFieldContainer[
|
|
226
|
+
color_ranges: _containers.RepeatedCompositeFieldContainer[ColorRangePbo]
|
|
227
227
|
scientific_notation_min_digits_from_decimal_point: int
|
|
228
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[
|
|
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
230
|
|
|
231
|
-
class
|
|
231
|
+
class ShortPropertiesPbo(_message.Message):
|
|
232
232
|
__slots__ = ("min_value", "max_value", "default_value", "unique_value", "color_ranges", "scientific_notation_min_digits_from_decimal_point", "scientific_notation_precision")
|
|
233
233
|
MIN_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
234
234
|
MAX_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -241,12 +241,12 @@ class ShortProperties(_message.Message):
|
|
|
241
241
|
max_value: int
|
|
242
242
|
default_value: int
|
|
243
243
|
unique_value: bool
|
|
244
|
-
color_ranges: _containers.RepeatedCompositeFieldContainer[
|
|
244
|
+
color_ranges: _containers.RepeatedCompositeFieldContainer[ColorRangePbo]
|
|
245
245
|
scientific_notation_min_digits_from_decimal_point: int
|
|
246
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[
|
|
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
248
|
|
|
249
|
-
class
|
|
249
|
+
class SelectionPropertiesPbo(_message.Message):
|
|
250
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
251
|
class ColorMappingEntry(_message.Message):
|
|
252
252
|
__slots__ = ("key", "value")
|
|
@@ -260,8 +260,8 @@ class SelectionProperties(_message.Message):
|
|
|
260
260
|
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
261
261
|
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
262
262
|
key: str
|
|
263
|
-
value:
|
|
264
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[
|
|
263
|
+
value: ProcessDetailEntryPbo
|
|
264
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[ProcessDetailEntryPbo, _Mapping]] = ...) -> None: ...
|
|
265
265
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
266
266
|
LIST_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
267
267
|
AUTO_SORT_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -289,16 +289,16 @@ class SelectionProperties(_message.Message):
|
|
|
289
289
|
multi_select: bool
|
|
290
290
|
index_for_search: bool
|
|
291
291
|
is_auto_size: bool
|
|
292
|
-
field_validator:
|
|
292
|
+
field_validator: FieldValidatorPbo
|
|
293
293
|
static_list_values: _containers.RepeatedScalarFieldContainer[str]
|
|
294
294
|
color_mapping: _containers.ScalarMap[str, str]
|
|
295
295
|
auto_clear_field_list: _containers.RepeatedScalarFieldContainer[str]
|
|
296
|
-
process_detail_map: _containers.MessageMap[str,
|
|
297
|
-
dependent_fields: _containers.RepeatedCompositeFieldContainer[
|
|
296
|
+
process_detail_map: _containers.MessageMap[str, ProcessDetailEntryPbo]
|
|
297
|
+
dependent_fields: _containers.RepeatedCompositeFieldContainer[SelectionDependentFieldEntryPbo]
|
|
298
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[
|
|
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
300
|
|
|
301
|
-
class
|
|
301
|
+
class StringPropertiesPbo(_message.Message):
|
|
302
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
303
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
304
304
|
MAX_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -320,13 +320,13 @@ class StringProperties(_message.Message):
|
|
|
320
320
|
html_editor: bool
|
|
321
321
|
link_out: bool
|
|
322
322
|
link_out_url: str
|
|
323
|
-
string_format:
|
|
323
|
+
string_format: StringFormatPbo
|
|
324
324
|
is_auto_size: bool
|
|
325
|
-
field_validator:
|
|
325
|
+
field_validator: FieldValidatorPbo
|
|
326
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[
|
|
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
328
|
|
|
329
|
-
class
|
|
329
|
+
class SideLinkPropertiesPbo(_message.Message):
|
|
330
330
|
__slots__ = ("linked_data_type_name", "default_value", "show_in_knowledge_graph", "knowledge_graph_display_name")
|
|
331
331
|
LINKED_DATA_TYPE_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
332
332
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -338,7 +338,7 @@ class SideLinkProperties(_message.Message):
|
|
|
338
338
|
knowledge_graph_display_name: str
|
|
339
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
340
|
|
|
341
|
-
class
|
|
341
|
+
class PickListPropertiesPbo(_message.Message):
|
|
342
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
343
|
class ColorMappingEntry(_message.Message):
|
|
344
344
|
__slots__ = ("key", "value")
|
|
@@ -352,8 +352,8 @@ class PickListProperties(_message.Message):
|
|
|
352
352
|
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
353
353
|
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
354
354
|
key: str
|
|
355
|
-
value:
|
|
356
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[
|
|
355
|
+
value: ProcessDetailEntryPbo
|
|
356
|
+
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[ProcessDetailEntryPbo, _Mapping]] = ...) -> None: ...
|
|
357
357
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
358
358
|
PICK_LIST_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
359
359
|
DIRECT_EDIT_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -372,35 +372,35 @@ class PickListProperties(_message.Message):
|
|
|
372
372
|
link_out: bool
|
|
373
373
|
link_out_url: str
|
|
374
374
|
index_for_search: bool
|
|
375
|
-
field_validator:
|
|
375
|
+
field_validator: FieldValidatorPbo
|
|
376
376
|
color_mapping: _containers.ScalarMap[str, str]
|
|
377
377
|
auto_clear_field_list: _containers.RepeatedScalarFieldContainer[str]
|
|
378
|
-
process_detail_map: _containers.MessageMap[str,
|
|
379
|
-
dependent_fields: _containers.RepeatedCompositeFieldContainer[
|
|
378
|
+
process_detail_map: _containers.MessageMap[str, ProcessDetailEntryPbo]
|
|
379
|
+
dependent_fields: _containers.RepeatedCompositeFieldContainer[SelectionDependentFieldEntryPbo]
|
|
380
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[
|
|
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
382
|
|
|
383
|
-
class
|
|
383
|
+
class ParentLinkPropertiesPbo(_message.Message):
|
|
384
384
|
__slots__ = ("default_value",)
|
|
385
385
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
386
386
|
default_value: str
|
|
387
387
|
def __init__(self, default_value: _Optional[str] = ...) -> None: ...
|
|
388
388
|
|
|
389
|
-
class
|
|
389
|
+
class MultiParentPropertiesPbo(_message.Message):
|
|
390
390
|
__slots__ = ()
|
|
391
391
|
def __init__(self) -> None: ...
|
|
392
392
|
|
|
393
|
-
class
|
|
393
|
+
class IdentifierPropertiesPbo(_message.Message):
|
|
394
394
|
__slots__ = ("default_value",)
|
|
395
395
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
396
396
|
default_value: str
|
|
397
397
|
def __init__(self, default_value: _Optional[str] = ...) -> None: ...
|
|
398
398
|
|
|
399
|
-
class
|
|
399
|
+
class FileBlobPropertiesPbo(_message.Message):
|
|
400
400
|
__slots__ = ()
|
|
401
401
|
def __init__(self) -> None: ...
|
|
402
402
|
|
|
403
|
-
class
|
|
403
|
+
class EnumPropertiesPbo(_message.Message):
|
|
404
404
|
__slots__ = ("default_value", "values", "color_mapping", "auto_clear_field_list", "dependent_fields", "is_hide_disabled_fields")
|
|
405
405
|
class ColorMappingEntry(_message.Message):
|
|
406
406
|
__slots__ = ("key", "value")
|
|
@@ -419,11 +419,11 @@ class EnumProperties(_message.Message):
|
|
|
419
419
|
values: _containers.RepeatedScalarFieldContainer[str]
|
|
420
420
|
color_mapping: _containers.ScalarMap[str, str]
|
|
421
421
|
auto_clear_field_list: _containers.RepeatedScalarFieldContainer[str]
|
|
422
|
-
dependent_fields: _containers.RepeatedCompositeFieldContainer[
|
|
422
|
+
dependent_fields: _containers.RepeatedCompositeFieldContainer[EnumDependentFieldEntryPbo]
|
|
423
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[
|
|
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
425
|
|
|
426
|
-
class
|
|
426
|
+
class DateRangePropertiesPbo(_message.Message):
|
|
427
427
|
__slots__ = ("default_value", "is_static", "date_time_format")
|
|
428
428
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
429
429
|
IS_STATIC_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -433,13 +433,13 @@ class DateRangeProperties(_message.Message):
|
|
|
433
433
|
date_time_format: str
|
|
434
434
|
def __init__(self, default_value: _Optional[str] = ..., is_static: bool = ..., date_time_format: _Optional[str] = ...) -> None: ...
|
|
435
435
|
|
|
436
|
-
class
|
|
436
|
+
class ChildLinkPropertiesPbo(_message.Message):
|
|
437
437
|
__slots__ = ("default_value",)
|
|
438
438
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
439
439
|
default_value: int
|
|
440
440
|
def __init__(self, default_value: _Optional[int] = ...) -> None: ...
|
|
441
441
|
|
|
442
|
-
class
|
|
442
|
+
class ActionStringPropertiesPbo(_message.Message):
|
|
443
443
|
__slots__ = ("default_value", "max_length", "unique_value", "icon_name", "action_plugin_path", "field_validator", "direct_edit")
|
|
444
444
|
DEFAULT_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
445
445
|
MAX_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -453,11 +453,11 @@ class ActionStringProperties(_message.Message):
|
|
|
453
453
|
unique_value: bool
|
|
454
454
|
icon_name: str
|
|
455
455
|
action_plugin_path: str
|
|
456
|
-
field_validator:
|
|
456
|
+
field_validator: FieldValidatorPbo
|
|
457
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[
|
|
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
459
|
|
|
460
|
-
class
|
|
460
|
+
class ActionPropertiesPbo(_message.Message):
|
|
461
461
|
__slots__ = ("icon_name", "icon_color", "background_color", "font_color", "action_plugin_path")
|
|
462
462
|
ICON_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
463
463
|
ICON_COLOR_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -471,7 +471,7 @@ class ActionProperties(_message.Message):
|
|
|
471
471
|
action_plugin_path: str
|
|
472
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
473
|
|
|
474
|
-
class
|
|
474
|
+
class AccessionPropertiesPbo(_message.Message):
|
|
475
475
|
__slots__ = ("unique_value", "index_for_search", "link_out", "link_out_url", "sequence_key", "prefix", "suffix", "number_of_digits", "starting_value")
|
|
476
476
|
UNIQUE_VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
477
477
|
INDEX_FOR_SEARCH_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -493,7 +493,7 @@ class AccessionProperties(_message.Message):
|
|
|
493
493
|
starting_value: int
|
|
494
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
495
|
|
|
496
|
-
class
|
|
496
|
+
class VeloxFieldDefPbo(_message.Message):
|
|
497
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
498
|
DATA_FIELD_TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
499
499
|
DATA_FIELD_NAME_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -542,7 +542,7 @@ class VeloxFieldDefProto(_message.Message):
|
|
|
542
542
|
ACTION_STRING_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
|
|
543
543
|
ACTION_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
|
|
544
544
|
ACCESSION_PROPERTIES_FIELD_NUMBER: _ClassVar[int]
|
|
545
|
-
data_field_type:
|
|
545
|
+
data_field_type: FieldTypePbo
|
|
546
546
|
data_field_name: str
|
|
547
547
|
display_name: str
|
|
548
548
|
description: str
|
|
@@ -551,15 +551,15 @@ class VeloxFieldDefProto(_message.Message):
|
|
|
551
551
|
visible: bool
|
|
552
552
|
identifier: bool
|
|
553
553
|
identifier_order: int
|
|
554
|
-
sort_direction:
|
|
554
|
+
sort_direction: SortDirectionPbo
|
|
555
555
|
sort_order: int
|
|
556
556
|
tag: str
|
|
557
557
|
approve_edit: bool
|
|
558
558
|
workflow_only_editing: bool
|
|
559
|
-
font_size:
|
|
559
|
+
font_size: FontSizePbo
|
|
560
560
|
bold_font: bool
|
|
561
561
|
italic_font: bool
|
|
562
|
-
text_decoration:
|
|
562
|
+
text_decoration: TextDecorationPbo
|
|
563
563
|
is_key_field: bool
|
|
564
564
|
key_field_order: int
|
|
565
565
|
is_removable: bool
|
|
@@ -569,30 +569,30 @@ class VeloxFieldDefProto(_message.Message):
|
|
|
569
569
|
is_active: bool
|
|
570
570
|
is_for_plugin_use_only: bool
|
|
571
571
|
default_table_column_width: int
|
|
572
|
-
boolean_properties:
|
|
573
|
-
date_properties:
|
|
574
|
-
double_properties:
|
|
575
|
-
integer_properties:
|
|
576
|
-
long_properties:
|
|
577
|
-
selection_properties:
|
|
578
|
-
string_properties:
|
|
579
|
-
side_link_properties:
|
|
580
|
-
short_properties:
|
|
581
|
-
picklist_properties:
|
|
582
|
-
parent_link_properties:
|
|
583
|
-
multi_parent_properties:
|
|
584
|
-
identifier_properties:
|
|
585
|
-
file_blob_properties:
|
|
586
|
-
enum_properties:
|
|
587
|
-
date_range_properties:
|
|
588
|
-
child_link_properties:
|
|
589
|
-
action_string_properties:
|
|
590
|
-
action_properties:
|
|
591
|
-
accession_properties:
|
|
592
|
-
def __init__(self, data_field_type: _Optional[_Union[
|
|
593
|
-
|
|
594
|
-
class
|
|
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
595
|
__slots__ = ("field_definitions",)
|
|
596
596
|
FIELD_DEFINITIONS_FIELD_NUMBER: _ClassVar[int]
|
|
597
|
-
field_definitions: _containers.RepeatedCompositeFieldContainer[
|
|
598
|
-
def __init__(self, field_definitions: _Optional[_Iterable[_Union[
|
|
597
|
+
field_definitions: _containers.RepeatedCompositeFieldContainer[VeloxFieldDefPbo]
|
|
598
|
+
def __init__(self, field_definitions: _Optional[_Iterable[_Union[VeloxFieldDefPbo, _Mapping]]] = ...) -> None: ...
|