UncountablePythonSDK 0.0.128__py3-none-any.whl → 0.0.130__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 UncountablePythonSDK might be problematic. Click here for more details.
- docs/requirements.txt +1 -1
- examples/integration-server/jobs/materials_auto/example_instrument.py +4 -3
- examples/integration-server/jobs/materials_auto/example_parse.py +56 -3
- examples/integration-server/jobs/materials_auto/example_predictions.py +2 -2
- examples/integration-server/jobs/materials_auto/example_runsheet_wh.py +25 -22
- examples/integration-server/pyproject.toml +1 -1
- pkgs/argument_parser/argument_parser.py +20 -1
- pkgs/serialization_util/serialization_helpers.py +3 -1
- pkgs/type_spec/builder.py +9 -3
- pkgs/type_spec/builder_types.py +9 -0
- pkgs/type_spec/cross_output_links.py +2 -10
- pkgs/type_spec/emit_open_api.py +0 -12
- pkgs/type_spec/emit_python.py +72 -11
- pkgs/type_spec/emit_typescript_util.py +28 -6
- pkgs/type_spec/load_types.py +1 -1
- pkgs/type_spec/parts/base.ts.prepart +3 -0
- pkgs/type_spec/type_info/emit_type_info.py +13 -2
- uncountable/core/client.py +10 -3
- uncountable/integration/queue_runner/command_server/command_server.py +8 -7
- uncountable/integration/webhook_server/entrypoint.py +2 -0
- uncountable/types/__init__.py +8 -0
- uncountable/types/api/entity/list_aggregate.py +79 -0
- uncountable/types/api/entity/list_entities.py +25 -0
- uncountable/types/api/notebooks/__init__.py +1 -0
- uncountable/types/api/notebooks/add_notebook_content.py +119 -0
- uncountable/types/api/recipes/get_recipes_data.py +13 -0
- uncountable/types/async_batch_processor.py +20 -0
- uncountable/types/client_base.py +222 -0
- uncountable/types/client_config.py +1 -0
- uncountable/types/client_config_t.py +10 -0
- uncountable/types/entity_t.py +2 -0
- uncountable/types/integration_server_t.py +2 -0
- uncountable/types/listing.py +9 -0
- uncountable/types/listing_t.py +51 -0
- uncountable/types/structured_filters.py +21 -0
- uncountable/types/structured_filters_t.py +206 -0
- {uncountablepythonsdk-0.0.128.dist-info → uncountablepythonsdk-0.0.130.dist-info}/METADATA +1 -1
- {uncountablepythonsdk-0.0.128.dist-info → uncountablepythonsdk-0.0.130.dist-info}/RECORD +40 -32
- {uncountablepythonsdk-0.0.128.dist-info → uncountablepythonsdk-0.0.130.dist-info}/WHEEL +0 -0
- {uncountablepythonsdk-0.0.128.dist-info → uncountablepythonsdk-0.0.130.dist-info}/top_level.txt +0 -0
|
@@ -4,4 +4,5 @@
|
|
|
4
4
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
5
5
|
# Kept only for SDK backwards compatibility
|
|
6
6
|
from .client_config_t import ClientConfigOptions as ClientConfigOptions
|
|
7
|
+
from .client_config_t import RequestOptions as RequestOptions
|
|
7
8
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -12,6 +12,7 @@ from . import base_t
|
|
|
12
12
|
|
|
13
13
|
__all__: list[str] = [
|
|
14
14
|
"ClientConfigOptions",
|
|
15
|
+
"RequestOptions",
|
|
15
16
|
]
|
|
16
17
|
|
|
17
18
|
|
|
@@ -23,4 +24,13 @@ __all__: list[str] = [
|
|
|
23
24
|
class ClientConfigOptions:
|
|
24
25
|
allow_insecure_tls: bool = False
|
|
25
26
|
extra_headers: dict[str, str] | None = None
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
30
|
+
@serial_class(
|
|
31
|
+
named_type_path="sdk.client_config.RequestOptions",
|
|
32
|
+
)
|
|
33
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
|
|
34
|
+
class RequestOptions:
|
|
35
|
+
timeout_secs: int | None = None
|
|
26
36
|
# DO NOT MODIFY -- This file is generated by type_spec
|
uncountable/types/entity_t.py
CHANGED
|
@@ -32,6 +32,7 @@ __all__: list[str] = [
|
|
|
32
32
|
"annotation_type": "Annotation Type",
|
|
33
33
|
"approval": "Approval",
|
|
34
34
|
"async_job": "Async Job",
|
|
35
|
+
"barcode": "Barcode",
|
|
35
36
|
"calculation": "Calculation",
|
|
36
37
|
"calendar": "Calendar",
|
|
37
38
|
"calendar_event": "Calendar Event",
|
|
@@ -217,6 +218,7 @@ class EntityType(StrEnum):
|
|
|
217
218
|
ANNOTATION_TYPE = "annotation_type"
|
|
218
219
|
APPROVAL = "approval"
|
|
219
220
|
ASYNC_JOB = "async_job"
|
|
221
|
+
BARCODE = "barcode"
|
|
220
222
|
CALCULATION = "calculation"
|
|
221
223
|
CALENDAR = "calendar"
|
|
222
224
|
CALENDAR_EVENT = "calendar_event"
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# ruff: noqa: E402 Q003
|
|
2
|
+
# fmt: off
|
|
3
|
+
# isort: skip_file
|
|
4
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
5
|
+
# Kept only for SDK backwards compatibility
|
|
6
|
+
from .listing_t import ColumnType as ColumnType
|
|
7
|
+
from .listing_t import ColumnIdentifierEntityRefName as ColumnIdentifierEntityRefName
|
|
8
|
+
from .listing_t import ColumnIdentifier as ColumnIdentifier
|
|
9
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# ruff: noqa: E402 Q003
|
|
3
|
+
# fmt: off
|
|
4
|
+
# isort: skip_file
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
import typing # noqa: F401
|
|
7
|
+
import datetime # noqa: F401
|
|
8
|
+
from decimal import Decimal # noqa: F401
|
|
9
|
+
from enum import StrEnum
|
|
10
|
+
import dataclasses
|
|
11
|
+
from pkgs.serialization import serial_class
|
|
12
|
+
from pkgs.serialization import serial_union_annotation
|
|
13
|
+
from . import base_t
|
|
14
|
+
from . import entity_t
|
|
15
|
+
|
|
16
|
+
__all__: list[str] = [
|
|
17
|
+
"ColumnIdentifier",
|
|
18
|
+
"ColumnIdentifierEntityRefName",
|
|
19
|
+
"ColumnType",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
24
|
+
class ColumnType(StrEnum):
|
|
25
|
+
REF_NAME = "ref_name"
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
29
|
+
@serial_class(
|
|
30
|
+
named_type_path="sdk.listing.ColumnIdentifierEntityRefName",
|
|
31
|
+
parse_require={"type"},
|
|
32
|
+
)
|
|
33
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
34
|
+
class ColumnIdentifierEntityRefName:
|
|
35
|
+
type: typing.Literal[ColumnType.REF_NAME] = ColumnType.REF_NAME
|
|
36
|
+
entity_type: entity_t.EntityType
|
|
37
|
+
ref_name: str
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
41
|
+
ColumnIdentifier = typing.Annotated[
|
|
42
|
+
typing.Union[ColumnIdentifierEntityRefName],
|
|
43
|
+
serial_union_annotation(
|
|
44
|
+
named_type_path="sdk.listing.ColumnIdentifier",
|
|
45
|
+
discriminator="type",
|
|
46
|
+
discriminator_map={
|
|
47
|
+
"ref_name": ColumnIdentifierEntityRefName,
|
|
48
|
+
},
|
|
49
|
+
),
|
|
50
|
+
]
|
|
51
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# ruff: noqa: E402 Q003
|
|
2
|
+
# fmt: off
|
|
3
|
+
# isort: skip_file
|
|
4
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
5
|
+
# Kept only for SDK backwards compatibility
|
|
6
|
+
from .structured_filters_t import FilterRelation as FilterRelation
|
|
7
|
+
from .structured_filters_t import FilterSpecBase as FilterSpecBase
|
|
8
|
+
from .structured_filters_t import FilterScalarType as FilterScalarType
|
|
9
|
+
from .structured_filters_t import FilterIdType as FilterIdType
|
|
10
|
+
from .structured_filters_t import StringFilterValue as StringFilterValue
|
|
11
|
+
from .structured_filters_t import FilterSpecEquals as FilterSpecEquals
|
|
12
|
+
from .structured_filters_t import FilterSpecInclude as FilterSpecInclude
|
|
13
|
+
from .structured_filters_t import FilterSpecIStrContains as FilterSpecIStrContains
|
|
14
|
+
from .structured_filters_t import FilterSpecIStrStartsWith as FilterSpecIStrStartsWith
|
|
15
|
+
from .structured_filters_t import FilterSpecExists as FilterSpecExists
|
|
16
|
+
from .structured_filters_t import FilterSpecGreater as FilterSpecGreater
|
|
17
|
+
from .structured_filters_t import FilterLess as FilterLess
|
|
18
|
+
from .structured_filters_t import FilterSpecGeq as FilterSpecGeq
|
|
19
|
+
from .structured_filters_t import FilterSpecLeq as FilterSpecLeq
|
|
20
|
+
from .structured_filters_t import FilterSpec as FilterSpec
|
|
21
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# ruff: noqa: E402 Q003
|
|
3
|
+
# fmt: off
|
|
4
|
+
# isort: skip_file
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
import typing # noqa: F401
|
|
7
|
+
import datetime # noqa: F401
|
|
8
|
+
from decimal import Decimal # noqa: F401
|
|
9
|
+
from enum import StrEnum
|
|
10
|
+
import dataclasses
|
|
11
|
+
from pkgs.serialization import serial_class
|
|
12
|
+
from pkgs.serialization import serial_union_annotation
|
|
13
|
+
from pkgs.serialization import serial_alias_annotation
|
|
14
|
+
from . import base_t
|
|
15
|
+
from . import listing_t
|
|
16
|
+
|
|
17
|
+
__all__: list[str] = [
|
|
18
|
+
"FilterIdType",
|
|
19
|
+
"FilterLess",
|
|
20
|
+
"FilterRelation",
|
|
21
|
+
"FilterScalarType",
|
|
22
|
+
"FilterSpec",
|
|
23
|
+
"FilterSpecBase",
|
|
24
|
+
"FilterSpecEquals",
|
|
25
|
+
"FilterSpecExists",
|
|
26
|
+
"FilterSpecGeq",
|
|
27
|
+
"FilterSpecGreater",
|
|
28
|
+
"FilterSpecIStrContains",
|
|
29
|
+
"FilterSpecIStrStartsWith",
|
|
30
|
+
"FilterSpecInclude",
|
|
31
|
+
"FilterSpecLeq",
|
|
32
|
+
"StringFilterValue",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
37
|
+
class FilterRelation(StrEnum):
|
|
38
|
+
EQUALS = "equals"
|
|
39
|
+
GREATER = "greater"
|
|
40
|
+
GEQ = "geq"
|
|
41
|
+
LESS = "less"
|
|
42
|
+
LEQ = "leq"
|
|
43
|
+
ISTR_CONTAINS = "istr_contains"
|
|
44
|
+
ISTR_STARTS_WITH = "istr_starts_with"
|
|
45
|
+
INCLUDE = "include"
|
|
46
|
+
EXISTS = "exists"
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
50
|
+
@serial_class(
|
|
51
|
+
named_type_path="sdk.structured_filters.FilterSpecBase",
|
|
52
|
+
)
|
|
53
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
54
|
+
class FilterSpecBase:
|
|
55
|
+
relation: FilterRelation
|
|
56
|
+
column: listing_t.ColumnIdentifier
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
60
|
+
FilterScalarType = typing.Annotated[
|
|
61
|
+
str | int | Decimal,
|
|
62
|
+
serial_alias_annotation(
|
|
63
|
+
named_type_path="sdk.structured_filters.FilterScalarType",
|
|
64
|
+
),
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
69
|
+
FilterIdType = typing.Annotated[
|
|
70
|
+
base_t.ObjectId | str,
|
|
71
|
+
serial_alias_annotation(
|
|
72
|
+
named_type_path="sdk.structured_filters.FilterIdType",
|
|
73
|
+
),
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
78
|
+
StringFilterValue = typing.Annotated[
|
|
79
|
+
typing.Union[str],
|
|
80
|
+
serial_alias_annotation(
|
|
81
|
+
named_type_path="sdk.structured_filters.StringFilterValue",
|
|
82
|
+
),
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
87
|
+
@serial_class(
|
|
88
|
+
named_type_path="sdk.structured_filters.FilterSpecEquals",
|
|
89
|
+
parse_require={"relation"},
|
|
90
|
+
)
|
|
91
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
92
|
+
class FilterSpecEquals(FilterSpecBase):
|
|
93
|
+
relation: typing.Literal[FilterRelation.EQUALS] = FilterRelation.EQUALS
|
|
94
|
+
value: FilterScalarType
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
98
|
+
@serial_class(
|
|
99
|
+
named_type_path="sdk.structured_filters.FilterSpecInclude",
|
|
100
|
+
parse_require={"relation"},
|
|
101
|
+
)
|
|
102
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
103
|
+
class FilterSpecInclude(FilterSpecBase):
|
|
104
|
+
relation: typing.Literal[FilterRelation.INCLUDE] = FilterRelation.INCLUDE
|
|
105
|
+
value: FilterIdType | tuple[FilterIdType, ...]
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
109
|
+
@serial_class(
|
|
110
|
+
named_type_path="sdk.structured_filters.FilterSpecIStrContains",
|
|
111
|
+
parse_require={"relation"},
|
|
112
|
+
)
|
|
113
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
114
|
+
class FilterSpecIStrContains(FilterSpecBase):
|
|
115
|
+
relation: typing.Literal[FilterRelation.ISTR_CONTAINS] = FilterRelation.ISTR_CONTAINS
|
|
116
|
+
value: str
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
120
|
+
@serial_class(
|
|
121
|
+
named_type_path="sdk.structured_filters.FilterSpecIStrStartsWith",
|
|
122
|
+
parse_require={"relation"},
|
|
123
|
+
)
|
|
124
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
125
|
+
class FilterSpecIStrStartsWith(FilterSpecBase):
|
|
126
|
+
relation: typing.Literal[FilterRelation.ISTR_STARTS_WITH] = FilterRelation.ISTR_STARTS_WITH
|
|
127
|
+
value: str
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
131
|
+
@serial_class(
|
|
132
|
+
named_type_path="sdk.structured_filters.FilterSpecExists",
|
|
133
|
+
parse_require={"relation"},
|
|
134
|
+
)
|
|
135
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
136
|
+
class FilterSpecExists(FilterSpecBase):
|
|
137
|
+
relation: typing.Literal[FilterRelation.EXISTS] = FilterRelation.EXISTS
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
141
|
+
@serial_class(
|
|
142
|
+
named_type_path="sdk.structured_filters.FilterSpecGreater",
|
|
143
|
+
to_string_values={"value"},
|
|
144
|
+
parse_require={"relation"},
|
|
145
|
+
)
|
|
146
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
147
|
+
class FilterSpecGreater(FilterSpecBase):
|
|
148
|
+
relation: typing.Literal[FilterRelation.GREATER] = FilterRelation.GREATER
|
|
149
|
+
value: Decimal
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
153
|
+
@serial_class(
|
|
154
|
+
named_type_path="sdk.structured_filters.FilterLess",
|
|
155
|
+
to_string_values={"value"},
|
|
156
|
+
parse_require={"relation"},
|
|
157
|
+
)
|
|
158
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
159
|
+
class FilterLess(FilterSpecBase):
|
|
160
|
+
relation: typing.Literal[FilterRelation.LESS] = FilterRelation.LESS
|
|
161
|
+
value: Decimal
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
165
|
+
@serial_class(
|
|
166
|
+
named_type_path="sdk.structured_filters.FilterSpecGeq",
|
|
167
|
+
to_string_values={"value"},
|
|
168
|
+
parse_require={"relation"},
|
|
169
|
+
)
|
|
170
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
171
|
+
class FilterSpecGeq(FilterSpecBase):
|
|
172
|
+
relation: typing.Literal[FilterRelation.GEQ] = FilterRelation.GEQ
|
|
173
|
+
value: Decimal
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
177
|
+
@serial_class(
|
|
178
|
+
named_type_path="sdk.structured_filters.FilterSpecLeq",
|
|
179
|
+
to_string_values={"value"},
|
|
180
|
+
parse_require={"relation"},
|
|
181
|
+
)
|
|
182
|
+
@dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True, frozen=True, eq=True) # type: ignore[literal-required]
|
|
183
|
+
class FilterSpecLeq(FilterSpecBase):
|
|
184
|
+
relation: typing.Literal[FilterRelation.LEQ] = FilterRelation.LEQ
|
|
185
|
+
value: Decimal
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
189
|
+
FilterSpec = typing.Annotated[
|
|
190
|
+
FilterSpecEquals | FilterSpecGreater | FilterSpecGeq | FilterSpecLeq | FilterSpecIStrContains | FilterSpecIStrStartsWith | FilterSpecInclude | FilterSpecExists,
|
|
191
|
+
serial_union_annotation(
|
|
192
|
+
named_type_path="sdk.structured_filters.FilterSpec",
|
|
193
|
+
discriminator="relation",
|
|
194
|
+
discriminator_map={
|
|
195
|
+
"equals": FilterSpecEquals,
|
|
196
|
+
"greater": FilterSpecGreater,
|
|
197
|
+
"geq": FilterSpecGeq,
|
|
198
|
+
"leq": FilterSpecLeq,
|
|
199
|
+
"istr_contains": FilterSpecIStrContains,
|
|
200
|
+
"istr_starts_with": FilterSpecIStrStartsWith,
|
|
201
|
+
"include": FilterSpecInclude,
|
|
202
|
+
"exists": FilterSpecExists,
|
|
203
|
+
},
|
|
204
|
+
),
|
|
205
|
+
]
|
|
206
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: UncountablePythonSDK
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.130
|
|
4
4
|
Summary: Uncountable SDK
|
|
5
5
|
Project-URL: Homepage, https://github.com/uncountableinc/uncountable-python-sdk
|
|
6
6
|
Project-URL: Repository, https://github.com/uncountableinc/uncountable-python-sdk.git
|
|
@@ -2,7 +2,7 @@ docs/.gitignore,sha256=_ebkZUcwfvfnGEJ95rfj1lxoBNd6EE9ZvtOc7FsbfFE,7
|
|
|
2
2
|
docs/conf.py,sha256=Ky-_Y76T7pwN2aBG-dSF79Av70e7ASgcOXEdQ1qyor4,3542
|
|
3
3
|
docs/index.md,sha256=g4Yi5831fEkywYkkcFohYLkKzSI91SOZF7DxKsm9zgI,3193
|
|
4
4
|
docs/justfile,sha256=WymCEQ6W2A8Ak79iUPmecmuaUNN2htb7STUrz5K7ELE,273
|
|
5
|
-
docs/requirements.txt,sha256=
|
|
5
|
+
docs/requirements.txt,sha256=VCcZc6d9gbj4RxuqEd4f8JzvOp03-hN6MPVrIJuwOxM,171
|
|
6
6
|
docs/integration_examples/create_ingredient.md,sha256=bzTQ943YhINxa3HQylEA26rbAsjr6HvvN_HkVkrzUeA,1547
|
|
7
7
|
docs/integration_examples/create_output.md,sha256=aDn2TjzKgY-HnxnvgsZS578cvajmHpF1y2HKkHfdtd4,2104
|
|
8
8
|
docs/integration_examples/index.md,sha256=lVP6k79rGgdWPfEKM8oJvxeJsBKlpRJaZfrqn9lkiBc,73
|
|
@@ -27,14 +27,14 @@ examples/oauth.py,sha256=QUmv4c27UDs3q98yigyA_Sm3hdK5qNfnDvxh7k06ZYg,213
|
|
|
27
27
|
examples/set_recipe_metadata_file.py,sha256=cRVXGz4UN4aqnNrNSzyBmikYHpe63lMIuzOpMwD9EDU,1036
|
|
28
28
|
examples/set_recipe_output_file_sdk.py,sha256=Lz1amqppnWTX83z-C090wCJ4hcKmCD3kb-4v0uBRi0Y,782
|
|
29
29
|
examples/upload_files.py,sha256=qMaSvMSdTMPOOP55y1AwEurc0SOdZAMvEydlqJPsGpg,432
|
|
30
|
-
examples/integration-server/pyproject.toml,sha256=
|
|
30
|
+
examples/integration-server/pyproject.toml,sha256=MtAVZjKHaEeYDrSyclUVAlhbudb0P5gCopQ-wrgrHuY,9091
|
|
31
31
|
examples/integration-server/jobs/materials_auto/concurrent_cron.py,sha256=xsK3H9ZEaniedC2nJUB0rqOcFI8y-ojfl_nLSJb9AMM,312
|
|
32
32
|
examples/integration-server/jobs/materials_auto/example_cron.py,sha256=spUMiiTEFaepbVXecjD_4aEEfqEtZGGZuWTKs9J6Xcw,736
|
|
33
33
|
examples/integration-server/jobs/materials_auto/example_http.py,sha256=eIL46ElWo8SKY7W5JWWkwZk6Qo7KRd9EJBxfy7YQ_sE,1429
|
|
34
|
-
examples/integration-server/jobs/materials_auto/example_instrument.py,sha256=
|
|
35
|
-
examples/integration-server/jobs/materials_auto/example_parse.py,sha256=
|
|
36
|
-
examples/integration-server/jobs/materials_auto/example_predictions.py,sha256=
|
|
37
|
-
examples/integration-server/jobs/materials_auto/example_runsheet_wh.py,sha256=
|
|
34
|
+
examples/integration-server/jobs/materials_auto/example_instrument.py,sha256=I79RLDW0m1N-vDkanBAeg2LzDlDZkk4zN_zNbFmgYvI,3434
|
|
35
|
+
examples/integration-server/jobs/materials_auto/example_parse.py,sha256=yW2iAN1AMf9qdAtR0DChWFIMYuet8d7K6-mQvMDtuvQ,5888
|
|
36
|
+
examples/integration-server/jobs/materials_auto/example_predictions.py,sha256=5fO4rqRa80_968A1uVZn2TlMOUib54A8rumGW02sIMM,2112
|
|
37
|
+
examples/integration-server/jobs/materials_auto/example_runsheet_wh.py,sha256=augHaaPwA3o6GVj3KDg77gyIif4VJfh8PQF2eo8vNMk,1264
|
|
38
38
|
examples/integration-server/jobs/materials_auto/example_wh.py,sha256=PN-skP27yJwDZboWk5g5EZEc3AKfVayQLfnopjsDKJc,659
|
|
39
39
|
examples/integration-server/jobs/materials_auto/profile.yaml,sha256=ywDrDRAyqiUdj_HvosNP5bXBL8mCWsvdJ1eYQd-mGYo,2369
|
|
40
40
|
pkgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -42,7 +42,7 @@ pkgs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
42
42
|
pkgs/argument_parser/__init__.py,sha256=EG3pwLEHTp-Qltd3lRnO4K22RiVrasePzKPDOfTPxFY,924
|
|
43
43
|
pkgs/argument_parser/_is_enum.py,sha256=Gw6jJa8nBwYGqXwwCZbSnWL8Rvr5alkg5lSVAqXtOZM,257
|
|
44
44
|
pkgs/argument_parser/_is_namedtuple.py,sha256=InCP2orqKbUYc4JsmE7ccri2EQPvLZeRijYPGqVSeXY,323
|
|
45
|
-
pkgs/argument_parser/argument_parser.py,sha256=
|
|
45
|
+
pkgs/argument_parser/argument_parser.py,sha256=0ykZ4cCLMyTk_8lxDUd_m92eYL8JmjDQaVB8rh9N_ZQ,21628
|
|
46
46
|
pkgs/argument_parser/case_convert.py,sha256=NuJLJUJRbyVb6_Slen4uqaStEHbcOS1d-hBBfDrrw-c,605
|
|
47
47
|
pkgs/filesystem_utils/__init__.py,sha256=2a0d2rEPlEEYwhm3Wckny4VCp4ZS7JtYSXmwdwNCRjo,1332
|
|
48
48
|
pkgs/filesystem_utils/_blob_session.py,sha256=4GicmwgGHVcqO8pOTu-EJakKMb1-IsxT9QnVi2D0oKU,5143
|
|
@@ -65,21 +65,22 @@ pkgs/serialization_util/__init__.py,sha256=YykkhqGNKiLCo-D5vSTq6WiPNfCyPXyr-mQO5
|
|
|
65
65
|
pkgs/serialization_util/_get_type_for_serialization.py,sha256=dW5_W9MFd6wgWfW5qlWork-GBb-QFLtiOZkjk2Zqn2M,1177
|
|
66
66
|
pkgs/serialization_util/convert_to_snakecase.py,sha256=H2BAo5ZdcCDN77RpLb-uP0s7-FQ5Ukwnsd3VYc1vD0M,583
|
|
67
67
|
pkgs/serialization_util/dataclasses.py,sha256=uhNGXQPQLZblDFQuuwkAGmKOPiRyfDzCdg72CVtYJGA,390
|
|
68
|
-
pkgs/serialization_util/serialization_helpers.py,sha256=
|
|
68
|
+
pkgs/serialization_util/serialization_helpers.py,sha256=Rs-kE0PWFY-f64hKo_3LJtYwE-CHiLfJdqFv7bcRUDQ,6663
|
|
69
69
|
pkgs/strenum_compat/__init__.py,sha256=wXRFeNvBm8RU6dy1PFJ5sRLgUIEeH_DVR95Sv5qpGbk,59
|
|
70
70
|
pkgs/strenum_compat/strenum_compat.py,sha256=uOUAgpYTjHs1MX8dG81jRlyTkt3KNbkV_25zp7xTX2s,36
|
|
71
71
|
pkgs/type_spec/__init__.py,sha256=h5DmJTca4QVV10sZR1x0-MlkZfuGYDfapR3zHvXfzto,19
|
|
72
72
|
pkgs/type_spec/__main__.py,sha256=5bJaX9Y_-FavP0qwzhk-z-V97UY7uaezJTa1zhO_HHQ,1048
|
|
73
|
-
pkgs/type_spec/builder.py,sha256=
|
|
73
|
+
pkgs/type_spec/builder.py,sha256=Ixyb9LVcjrmeD3Q1ZvQjqkNW6kOSvHNvgHRYNESKNNU,55284
|
|
74
|
+
pkgs/type_spec/builder_types.py,sha256=EFXvwd3DhuFcqMtG12U9RHNYXHxi_g6kY5AVPBo3fCg,253
|
|
74
75
|
pkgs/type_spec/config.py,sha256=m0Rky7Rg2jMglDPQChF30p5h5P86Ap1GObwzLzmypNE,5829
|
|
75
|
-
pkgs/type_spec/cross_output_links.py,sha256=
|
|
76
|
+
pkgs/type_spec/cross_output_links.py,sha256=763hGehl2aRXzp6GZ943Hu7zRGzv3BE4n8RGI9cl-pA,3071
|
|
76
77
|
pkgs/type_spec/emit_io_ts.py,sha256=CUvBs0boB_X-Kndh66yYcqFfq3oC_LGs8YffLkJ0ZXA,5707
|
|
77
|
-
pkgs/type_spec/emit_open_api.py,sha256=
|
|
78
|
+
pkgs/type_spec/emit_open_api.py,sha256=n3VNr796xKpmwQWtVXyGDxBQYpJ8X7nqKn5H-ESWV9M,27967
|
|
78
79
|
pkgs/type_spec/emit_open_api_util.py,sha256=bTmRvrGP82-eB75hwf9ySI7pDEC87FNQTF18VKEWSXY,2367
|
|
79
|
-
pkgs/type_spec/emit_python.py,sha256=
|
|
80
|
+
pkgs/type_spec/emit_python.py,sha256=2leQIqvwsfrn9KivqDZOB4LqDIyYvkj4LPTTNWxWutc,55236
|
|
80
81
|
pkgs/type_spec/emit_typescript.py,sha256=v0af0jF4YSGnFteWCNoKU0FjC_iJsWYAM32CCg0TnY8,11483
|
|
81
|
-
pkgs/type_spec/emit_typescript_util.py,sha256=
|
|
82
|
-
pkgs/type_spec/load_types.py,sha256=
|
|
82
|
+
pkgs/type_spec/emit_typescript_util.py,sha256=uTKdhFVvwrIehtsXhUiSxPdF0-WWmdQRo9E3X4gwtYA,12642
|
|
83
|
+
pkgs/type_spec/load_types.py,sha256=GsZSWJGBRr5GdC0aYXHz6qWjFEc7A7yjLW-Hugscl5o,4297
|
|
83
84
|
pkgs/type_spec/non_discriminated_union_exceptions.py,sha256=JB4WNDJWc3e9WMOabX4aTd0-6K7n1hctIW2lGf1bYts,612
|
|
84
85
|
pkgs/type_spec/open_api_util.py,sha256=r4rryE95valu4kmHaMAbXQ5PMwbUnnwYv4Gh6_CwiSU,7966
|
|
85
86
|
pkgs/type_spec/test.py,sha256=4ueujBq-pEgnX3Z69HyPmD-bullFXmpixcpVzfOkhP4,489
|
|
@@ -88,9 +89,9 @@ pkgs/type_spec/actions_registry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
88
89
|
pkgs/type_spec/actions_registry/__main__.py,sha256=SRw6kIhHTW7W2wGijYq66JARzoc4KpPmbLqwvnETyTE,4277
|
|
89
90
|
pkgs/type_spec/actions_registry/emit_typescript.py,sha256=W1lI36ITdJ7MBf37wlTB7H3X9Ljt217vIGMv4e3fxfY,5986
|
|
90
91
|
pkgs/type_spec/parts/base.py.prepart,sha256=Xy8my5ol_Iu0hpQpvgsmqGLkGcMsLSg-cgjm4Yp-QI4,2369
|
|
91
|
-
pkgs/type_spec/parts/base.ts.prepart,sha256=
|
|
92
|
+
pkgs/type_spec/parts/base.ts.prepart,sha256=eD7-9cCsHutDQ9uB6SPVLSZcRNFfEIggpd0QSqXew8A,1114
|
|
92
93
|
pkgs/type_spec/type_info/__main__.py,sha256=TLNvCHGcmaj_8Sj5bAQNpuNaaw2dpDzoFDWZds0V4Qo,1002
|
|
93
|
-
pkgs/type_spec/type_info/emit_type_info.py,sha256=
|
|
94
|
+
pkgs/type_spec/type_info/emit_type_info.py,sha256=6uwoWGI7KiM3n4STwUGH17gXRF0WfzjRNPFqFgH2A4o,16576
|
|
94
95
|
pkgs/type_spec/ui_entry_actions/__init__.py,sha256=WiHE_BexOEZWbkkbD7EnFau1aMLNmfgQywG9PTQNCkw,135
|
|
95
96
|
pkgs/type_spec/ui_entry_actions/generate_ui_entry_actions.py,sha256=65qUEp9zVcAsHEe3QjOTlPfLf45kH980fOXZXKNmOC8,9503
|
|
96
97
|
pkgs/type_spec/value_spec/__init__.py,sha256=Z-grlcZtxAfEXhPHsK0nD7PFLGsv4eqvunaPN7_TA84,83
|
|
@@ -102,7 +103,7 @@ uncountable/__init__.py,sha256=8l8XWNCKsu7TG94c-xa2KHpDegvxDC2FyQISdWC763Y,89
|
|
|
102
103
|
uncountable/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
104
|
uncountable/core/__init__.py,sha256=RFv0kO6rKFf1PtBPu83hCGmxqkJamRtsgQ9_-ztw7tA,341
|
|
104
105
|
uncountable/core/async_batch.py,sha256=9pYGFzVCQXt8059qFHgutweGIFPquJ5Xfq6NT5P-1K0,1206
|
|
105
|
-
uncountable/core/client.py,sha256=
|
|
106
|
+
uncountable/core/client.py,sha256=R0GLrFW8zR6_VONReCZOMawxBuq28omfz6Ervu0BSiU,13628
|
|
106
107
|
uncountable/core/environment.py,sha256=4gdJB0ZhRxKlqSKLaE4vUvEUGZ5fy8IAwXcGDRdYt7E,1037
|
|
107
108
|
uncountable/core/file_upload.py,sha256=bgvXk9vfF5qlhy2NAUcEEG7Q7i-c1wr2HrpaWD7HldU,4516
|
|
108
109
|
uncountable/core/types.py,sha256=s2CjqYJpsmbC7xMwxxT7kJ_V9bwokrjjWVVjpMcQpKI,333
|
|
@@ -132,7 +133,7 @@ uncountable/integration/queue_runner/types.py,sha256=8qTq29BTSa5rmW6CBlBntP0pNIi
|
|
|
132
133
|
uncountable/integration/queue_runner/worker.py,sha256=pxnFxubT_siS4SMckNCz9PXxoRjEbTYddlt05Fgd3Fc,4493
|
|
133
134
|
uncountable/integration/queue_runner/command_server/__init__.py,sha256=hMCDLWct8zW4B2a9BaIAsMhtaEgFlxONjeow-6nf6dg,675
|
|
134
135
|
uncountable/integration/queue_runner/command_server/command_client.py,sha256=lT_wiDKQQxIq1ercaiU_5RJanuBNAvcEK9se7pQVP58,4039
|
|
135
|
-
uncountable/integration/queue_runner/command_server/command_server.py,sha256=
|
|
136
|
+
uncountable/integration/queue_runner/command_server/command_server.py,sha256=QITGrXNBsMzFBTRbA20AC4vhdwd30D9SO8PekwkNceI,5391
|
|
136
137
|
uncountable/integration/queue_runner/command_server/constants.py,sha256=7J9mQIAMOfV50wnwpn7HgrPFEi3Ritj6HwrGYwxGLoU,88
|
|
137
138
|
uncountable/integration/queue_runner/command_server/types.py,sha256=fyYj4ZLEWyguKNoGfowLbnihRsEyQt-jW0U2oLTXsHI,1583
|
|
138
139
|
uncountable/integration/queue_runner/command_server/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -146,10 +147,10 @@ uncountable/integration/queue_runner/datastore/interface.py,sha256=tNlnY00D_OyuN
|
|
|
146
147
|
uncountable/integration/queue_runner/datastore/model.py,sha256=YPqlULU7FxuwjmhXGuj6P7skqs-JQttY-o0x1bCnBa0,775
|
|
147
148
|
uncountable/integration/secret_retrieval/__init__.py,sha256=3QXVj35w8rRMxVvmmsViFYDi3lcb3g70incfalOEm6o,87
|
|
148
149
|
uncountable/integration/secret_retrieval/retrieve_secret.py,sha256=LBEf18KHtXZxg-ZZ80stJ1vW39AWf0CQllP6pNu3Eq8,2994
|
|
149
|
-
uncountable/integration/webhook_server/entrypoint.py,sha256=
|
|
150
|
-
uncountable/types/__init__.py,sha256=
|
|
150
|
+
uncountable/integration/webhook_server/entrypoint.py,sha256=RQndrVCKdaVBk-xJ592eGqeN-O0IOM7flXDGoJ2HXsc,3505
|
|
151
|
+
uncountable/types/__init__.py,sha256=PGC73-HZCLUCNJq1vUQ05pNxndCb3eT9mSKEPF0Hp6w,11387
|
|
151
152
|
uncountable/types/async_batch.py,sha256=yCCWrrLQfxXVqZp-KskxLBNkNmuELdz4PJjx8ULppgs,662
|
|
152
|
-
uncountable/types/async_batch_processor.py,sha256
|
|
153
|
+
uncountable/types/async_batch_processor.py,sha256=-qLe7fBTHr3hHrAs96gMaUYJ3mkrsKkXK9Qm68X96fc,29629
|
|
153
154
|
uncountable/types/async_batch_t.py,sha256=E3Lo2_wot1lm0oblkLc9Uf5lmMt_zlw0VQ1yA507z8g,3945
|
|
154
155
|
uncountable/types/async_jobs.py,sha256=JI0ScfawaqMRbJ2jbgW3YQLhijPnBeYdMnZJjygSxHg,322
|
|
155
156
|
uncountable/types/async_jobs_t.py,sha256=u4xd3i512PZ-9592Q2ZgWh_faMiI4UMm0F_gOmZnerI,1389
|
|
@@ -161,15 +162,15 @@ uncountable/types/calculations.py,sha256=fApOFpgBemt_t7IVneVR0VdI3X5EOxiG6Xhzr6R
|
|
|
161
162
|
uncountable/types/calculations_t.py,sha256=pl-lhjyDQuj11Sf9g1-0BsSkN7Ez8UxDp8-KMQ_3enM,709
|
|
162
163
|
uncountable/types/chemical_structure.py,sha256=ujyragaD26-QG5jgKnWhO7TN3N1V9b_04T2WhqNYxxo,281
|
|
163
164
|
uncountable/types/chemical_structure_t.py,sha256=VFFyits_vx4t5L2euu_qFiSpsGJjURkDPr3ISnr3nPc,855
|
|
164
|
-
uncountable/types/client_base.py,sha256=
|
|
165
|
-
uncountable/types/client_config.py,sha256=
|
|
166
|
-
uncountable/types/client_config_t.py,sha256=
|
|
165
|
+
uncountable/types/client_base.py,sha256=wpWCkUDl2zUp1TdL-qMn70S_CfIal5FXNQ6g5D5jo5c,93664
|
|
166
|
+
uncountable/types/client_config.py,sha256=xTQfTRTwnAc8ArvOuQdkKGy1uvGcXgQ_cgqsxhQLFgU,342
|
|
167
|
+
uncountable/types/client_config_t.py,sha256=8JoXNcyYT26uJSs5qP3L6yaPgkn23y-o0NhLFU3ilbc,1089
|
|
167
168
|
uncountable/types/curves.py,sha256=QyEyC20jsG-LGKVx6miiF-w70vKMwNkILFBDIJ5Ok9g,345
|
|
168
169
|
uncountable/types/curves_t.py,sha256=DxYepdC3QKKR7mepOOBoyarNcFZQdUa5ZYH-hwCY3BI,1469
|
|
169
170
|
uncountable/types/data.py,sha256=u2isf4XEug3Eu-xSIoqGaCQmW2dFaKBHCkP_WKYwwBc,500
|
|
170
171
|
uncountable/types/data_t.py,sha256=vFoypK_WMGfN28r1sSlDYHZNUdBQC0XCN7-_Mlo4FJk,2832
|
|
171
172
|
uncountable/types/entity.py,sha256=Zclk1LYcRaYrMDhqyCjMSLEg0fE6_q8LHvV22Qvscgs,566
|
|
172
|
-
uncountable/types/entity_t.py,sha256=
|
|
173
|
+
uncountable/types/entity_t.py,sha256=S8LC9ROVLL9BkomHYlInWDbPp-bBGYhKgMwozpyfsIo,20849
|
|
173
174
|
uncountable/types/experiment_groups.py,sha256=qUpFOx1AKgzaT_4khCOv5Xs6jwiQGbvHH-GUh3v1nv4,288
|
|
174
175
|
uncountable/types/experiment_groups_t.py,sha256=29Ct-WPejpYMuGfnFfOoosU9iSfjzxpabpBX6oTPFUA,761
|
|
175
176
|
uncountable/types/exports.py,sha256=VMmxUO2PpV1Y63hZ2AnVor4H-B6aswJ7YpSru_u89lU,334
|
|
@@ -189,13 +190,15 @@ uncountable/types/input_attributes_t.py,sha256=8NJQeq_8MkUNn5BlDx34opp3eeZl8Sw1n
|
|
|
189
190
|
uncountable/types/inputs.py,sha256=3ghg39_oiLF5HqWF_wNwYv4HMR1lrKLfeRLn5ptIGw4,446
|
|
190
191
|
uncountable/types/inputs_t.py,sha256=eSVA7LNgLI3ja83GJm4sA9KhPICVV4zj2Dd4OhbuY9g,2158
|
|
191
192
|
uncountable/types/integration_server.py,sha256=VonA8h8TGnVBiss5W8-K82lA01JQa7TLk0ubFo8iiBQ,364
|
|
192
|
-
uncountable/types/integration_server_t.py,sha256=
|
|
193
|
+
uncountable/types/integration_server_t.py,sha256=9nEr5x24bf_g7w3HrAse-o-2SClefNOJdjSFbXiA6iQ,1336
|
|
193
194
|
uncountable/types/integration_session.py,sha256=MVTtZa04INF4L8PxPjqz3l1Lse6Hze3IlYPs2bRSqE0,548
|
|
194
195
|
uncountable/types/integration_session_t.py,sha256=HEfmPB6pt9GpgdaGKG0kgsJwq6W0Lid9Jy7Dzghhaic,1920
|
|
195
196
|
uncountable/types/integrations.py,sha256=0fOhtbLIOl9w1GP9J3PTagRU8mjOKV48JNLLH3SJQP0,472
|
|
196
197
|
uncountable/types/integrations_t.py,sha256=ihyhuMDKtJarQ19OppS0fYpJUYd8o5-w6YCDE440O-w,1871
|
|
197
198
|
uncountable/types/job_definition.py,sha256=hYp5jPYLLYm3NKEqzQrQfXL0Ms5KgEQGTON13YWSPYk,1804
|
|
198
199
|
uncountable/types/job_definition_t.py,sha256=E4IQvcYF3VDHbwRlvopy8y-HNAyEMZpwy7jkmp74fgQ,9563
|
|
200
|
+
uncountable/types/listing.py,sha256=5Z3WnK-jsh8yEjDIMsurd5REEXCEaDofDM1i3kBWbbM,402
|
|
201
|
+
uncountable/types/listing_t.py,sha256=gMFXWwSgvL2238aqr4BIq5iDTQNqttveqDQT1zxBMl0,1505
|
|
199
202
|
uncountable/types/notifications.py,sha256=ZGr1ULMG3cPMED83NbMjrjmgVzCeOTS1Tc-pFTNuY4Y,600
|
|
200
203
|
uncountable/types/notifications_t.py,sha256=qS2mhCkYHFPe2XtBespABJ3dNvisxrmIw_r8ZlUCh_g,2444
|
|
201
204
|
uncountable/types/outputs.py,sha256=I6zP2WHXg_jXgMqmuEJuJOlsjKjQGHjfs1JOwW9YxBM,260
|
|
@@ -232,6 +235,8 @@ uncountable/types/secret_retrieval.py,sha256=poY_nuZBIjNu64Wa0x5Ytsmh3OdAxps2kzu
|
|
|
232
235
|
uncountable/types/secret_retrieval_t.py,sha256=igWrOW_CwRvAE7BHIHVJojBwgcAG05Pqup8D45Sb0F4,2342
|
|
233
236
|
uncountable/types/sockets.py,sha256=OogyQ-pLyhJkV6JrBSLTOz9v6cDViYY5QM1ScSXPU3U,1208
|
|
234
237
|
uncountable/types/sockets_t.py,sha256=s--y5nbN4uHA2HVKW6rOz3HwIMk3MT2VKGXCA7reXb4,5608
|
|
238
|
+
uncountable/types/structured_filters.py,sha256=OwinQESbKhlMtJvF-g6HKned1jcgOqkFp7jfZaq0T20,1255
|
|
239
|
+
uncountable/types/structured_filters_t.py,sha256=FKOsExQP2L5-LXtGb24JvSvtMnu56QUgcl4CcYyZTmU,6978
|
|
235
240
|
uncountable/types/units.py,sha256=yxuddayiE8cnzrjQiIsURisWc-Vm1F37uyS3fjM--Ao,254
|
|
236
241
|
uncountable/types/units_t.py,sha256=d62vY2ETqIgMHASw_IcREwDDqKAqI-vPnoBOqzMt4-o,704
|
|
237
242
|
uncountable/types/uploader.py,sha256=odT7wkBfXUf1MoFy6W5JzZ-WY8JX0vO6odGOS_C2Voo,1222
|
|
@@ -257,7 +262,8 @@ uncountable/types/api/entity/create_or_update_entity.py,sha256=cxjJIcZTKOg8Y5kGz
|
|
|
257
262
|
uncountable/types/api/entity/export_entities.py,sha256=KGAkzHXbY28v7vcO_XyHVKQ-RVryI5dlYx4HdlYnBXw,1814
|
|
258
263
|
uncountable/types/api/entity/get_entities_data.py,sha256=hu0UfkU4PTyv3_CBZ7YmR8L8BKMq8hx6zH43XtUm16E,1616
|
|
259
264
|
uncountable/types/api/entity/grant_entity_permissions.py,sha256=4CvVIMvpdok8K1Bh6wMlwuUmoeP_-nL9y2GCEM6uAhY,1536
|
|
260
|
-
uncountable/types/api/entity/
|
|
265
|
+
uncountable/types/api/entity/list_aggregate.py,sha256=ocW-veleyCqh-6dRlLRwD-rGaxY1pdFTJozPqmojBJw,2353
|
|
266
|
+
uncountable/types/api/entity/list_entities.py,sha256=-ITJt6DZIWDd9j6vGNyX4fJbPedp-IqY-sRUSV0-Ad0,3008
|
|
261
267
|
uncountable/types/api/entity/lock_entity.py,sha256=nwkjtF89ZWV6_1cLe8R47-G542b8i3FvBIjauOJlObE,1311
|
|
262
268
|
uncountable/types/api/entity/lookup_entity.py,sha256=NIDdYl0iscueC68tfZ1lKp5vTq2NMDYtQ3cG6o2tBaI,3905
|
|
263
269
|
uncountable/types/api/entity/resolve_entity_ids.py,sha256=2FyZxTjPHwCzCg92JjH-akcbPu2d9L14Oh6hRVkKDxA,1523
|
|
@@ -291,6 +297,8 @@ uncountable/types/api/integrations/push_notification.py,sha256=_ycqsGSd7pdt480JW
|
|
|
291
297
|
uncountable/types/api/integrations/register_sockets_token.py,sha256=OOtQKY7B3T5tpz2WCtvMm1jOLNM5dXuSqpsY5FJ2IXk,1218
|
|
292
298
|
uncountable/types/api/material_families/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
293
299
|
uncountable/types/api/material_families/update_entity_material_families.py,sha256=qWJgAKH0MayadXvxckePCdo9yd34QXOmGZ7cKz5VLNo,1761
|
|
300
|
+
uncountable/types/api/notebooks/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
301
|
+
uncountable/types/api/notebooks/add_notebook_content.py,sha256=ruLhEYs5ScEOG2cIMK44uMbsds3lV-OwVCzs1mfgnVE,3536
|
|
294
302
|
uncountable/types/api/outputs/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
295
303
|
uncountable/types/api/outputs/get_output_data.py,sha256=luGoQZzbZsGIzo2dXMD5f6rDlXEgBjnnUU9n5T-VL9Q,3069
|
|
296
304
|
uncountable/types/api/outputs/get_output_names.py,sha256=myxLS1YedzWlKs3st64jmM9XMUphrUltxKISBz4pVSo,1539
|
|
@@ -324,7 +332,7 @@ uncountable/types/api/recipes/get_recipe_calculations.py,sha256=fHCQY-y3c640jR8K
|
|
|
324
332
|
uncountable/types/api/recipes/get_recipe_links.py,sha256=j8jBbgBqR2GAdw8vTZwyoXL0NyazTgquoc2l9ojQxMY,1271
|
|
325
333
|
uncountable/types/api/recipes/get_recipe_names.py,sha256=GOnKuPjGlNy89__Cp6pIudf8Xjv9MxA7DbNJhP-DAao,1457
|
|
326
334
|
uncountable/types/api/recipes/get_recipe_output_metadata.py,sha256=aTTYgg1uVXyEpz7mbtWMmw9kvoLHFONW3XEd4Kz1Grw,1914
|
|
327
|
-
uncountable/types/api/recipes/get_recipes_data.py,sha256
|
|
335
|
+
uncountable/types/api/recipes/get_recipes_data.py,sha256=-_m_MEQYNqMuCNQlTWMXNHZgfTTWVMRAkEFiXO4DnQs,7692
|
|
328
336
|
uncountable/types/api/recipes/lock_recipes.py,sha256=8nXh2OViududWO4m0Q3zA-Bzgu5-quQ2-z4-E5FX_dE,1855
|
|
329
337
|
uncountable/types/api/recipes/remove_recipe_from_project.py,sha256=eVmG8MBUScVtjt2Z3_EIjdzyeT0UMSFvdYunNG4mVNo,1221
|
|
330
338
|
uncountable/types/api/recipes/set_recipe_inputs.py,sha256=GSuT-Vgrn8-OG_eFuPCElI3mVWs2XaC_RUXasVCmABw,1766
|
|
@@ -345,7 +353,7 @@ uncountable/types/api/uploader/complete_async_parse.py,sha256=nYYBzjT_j4L7_1Ge-i
|
|
|
345
353
|
uncountable/types/api/uploader/invoke_uploader.py,sha256=Bj7Dq4A90k00suacwk3bLA_dCb2aovS1kAbVam2AQnM,1395
|
|
346
354
|
uncountable/types/api/user/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
347
355
|
uncountable/types/api/user/get_current_user_info.py,sha256=Avqi_RXtRgbefrT_dwJ9MrO6eDNSSa_Nu650FSuESlg,1109
|
|
348
|
-
uncountablepythonsdk-0.0.
|
|
349
|
-
uncountablepythonsdk-0.0.
|
|
350
|
-
uncountablepythonsdk-0.0.
|
|
351
|
-
uncountablepythonsdk-0.0.
|
|
356
|
+
uncountablepythonsdk-0.0.130.dist-info/METADATA,sha256=7IkKvjBoMGTiX5MXInptWwYyRmjeoDaS7atlR7FEMpc,2174
|
|
357
|
+
uncountablepythonsdk-0.0.130.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
358
|
+
uncountablepythonsdk-0.0.130.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
|
|
359
|
+
uncountablepythonsdk-0.0.130.dist-info/RECORD,,
|
|
File without changes
|
{uncountablepythonsdk-0.0.128.dist-info → uncountablepythonsdk-0.0.130.dist-info}/top_level.txt
RENAMED
|
File without changes
|