UncountablePythonSDK 0.0.39__py3-none-any.whl → 0.0.40__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.
- {UncountablePythonSDK-0.0.39.dist-info → UncountablePythonSDK-0.0.40.dist-info}/METADATA +1 -1
- UncountablePythonSDK-0.0.40.dist-info/RECORD +222 -0
- {UncountablePythonSDK-0.0.39.dist-info → UncountablePythonSDK-0.0.40.dist-info}/WHEEL +1 -1
- pkgs/type_spec/emit_python.py +40 -7
- pkgs/type_spec/type_info/emit_type_info.py +1 -1
- uncountable/types/__init__.py +29 -29
- uncountable/types/api/batch/execute_batch.py +1 -1
- uncountable/types/api/batch/execute_batch_load_async.py +2 -2
- uncountable/types/api/chemical/convert_chemical_formats.py +1 -1
- uncountable/types/api/entity/create_entities.py +3 -3
- uncountable/types/api/entity/create_entity.py +3 -3
- uncountable/types/api/entity/get_entities_data.py +3 -3
- uncountable/types/api/entity/list_entities.py +2 -2
- uncountable/types/api/entity/lock_entity.py +3 -3
- uncountable/types/api/entity/resolve_entity_ids.py +2 -2
- uncountable/types/api/entity/set_values.py +3 -3
- uncountable/types/api/entity/transition_entity_phase.py +3 -3
- uncountable/types/api/entity/unlock_entity.py +3 -3
- uncountable/types/api/equipment/associate_equipment_input.py +3 -3
- uncountable/types/api/field_options/upsert_field_options.py +1 -1
- uncountable/types/api/id_source/list_id_source.py +2 -2
- uncountable/types/api/id_source/match_id_source.py +2 -2
- uncountable/types/api/input_groups/get_input_group_names.py +1 -1
- uncountable/types/api/inputs/create_inputs.py +3 -3
- uncountable/types/api/inputs/get_input_data.py +2 -2
- uncountable/types/api/inputs/get_input_names.py +1 -1
- uncountable/types/api/inputs/get_inputs_data.py +2 -2
- uncountable/types/api/inputs/set_input_attribute_values.py +2 -2
- uncountable/types/api/inputs/set_input_category.py +2 -2
- uncountable/types/api/inputs/set_input_subcategories.py +3 -3
- uncountable/types/api/inputs/set_intermediate_type.py +1 -1
- uncountable/types/api/material_families/update_entity_material_families.py +5 -5
- uncountable/types/api/outputs/get_output_data.py +2 -2
- uncountable/types/api/outputs/get_output_names.py +1 -1
- uncountable/types/api/outputs/resolve_output_conditions.py +1 -1
- uncountable/types/api/permissions/set_core_permissions.py +3 -3
- uncountable/types/api/project/get_projects.py +2 -2
- uncountable/types/api/project/get_projects_data.py +4 -4
- uncountable/types/api/recipe_links/create_recipe_link.py +3 -3
- uncountable/types/api/recipe_links/remove_recipe_link.py +3 -3
- uncountable/types/api/recipe_metadata/get_recipe_metadata_data.py +1 -1
- uncountable/types/api/recipes/add_recipe_to_project.py +1 -1
- uncountable/types/api/recipes/archive_recipes.py +1 -1
- uncountable/types/api/recipes/associate_recipe_as_input.py +2 -2
- uncountable/types/api/recipes/associate_recipe_as_lot.py +2 -2
- uncountable/types/api/recipes/create_recipe.py +4 -4
- uncountable/types/api/recipes/create_recipes.py +2 -2
- uncountable/types/api/recipes/disassociate_recipe_as_input.py +2 -2
- uncountable/types/api/recipes/edit_recipe_inputs.py +3 -3
- uncountable/types/api/recipes/get_curve.py +2 -2
- uncountable/types/api/recipes/get_recipe_calculations.py +2 -2
- uncountable/types/api/recipes/get_recipe_links.py +2 -2
- uncountable/types/api/recipes/get_recipe_names.py +1 -1
- uncountable/types/api/recipes/get_recipe_output_metadata.py +2 -2
- uncountable/types/api/recipes/get_recipes_data.py +7 -7
- uncountable/types/api/recipes/lock_recipes.py +1 -1
- uncountable/types/api/recipes/remove_recipe_from_project.py +1 -1
- uncountable/types/api/recipes/set_recipe_inputs.py +1 -1
- uncountable/types/api/recipes/set_recipe_metadata.py +2 -2
- uncountable/types/api/recipes/set_recipe_output_annotations.py +2 -2
- uncountable/types/api/recipes/set_recipe_outputs.py +3 -3
- uncountable/types/api/recipes/set_recipe_tags.py +2 -2
- uncountable/types/api/recipes/unarchive_recipes.py +1 -1
- uncountable/types/api/recipes/unlock_recipes.py +1 -1
- uncountable/types/api/triggers/run_trigger.py +2 -2
- uncountable/types/async_batch.py +5 -53
- uncountable/types/async_batch_processor.py +6 -6
- uncountable/types/async_batch_t.py +59 -0
- uncountable/types/base.py +4 -78
- uncountable/types/base_t.py +85 -0
- uncountable/types/calculations.py +2 -17
- uncountable/types/calculations_t.py +23 -0
- uncountable/types/chemical_structure.py +2 -21
- uncountable/types/chemical_structure_t.py +27 -0
- uncountable/types/client_base.py +12 -12
- uncountable/types/curves.py +4 -41
- uncountable/types/curves_t.py +47 -0
- uncountable/types/entity.py +3 -268
- uncountable/types/entity_t.py +274 -0
- uncountable/types/experiment_groups.py +2 -17
- uncountable/types/experiment_groups_t.py +23 -0
- uncountable/types/field_values.py +5 -59
- uncountable/types/field_values_t.py +65 -0
- uncountable/types/fields.py +2 -18
- uncountable/types/fields_t.py +24 -0
- uncountable/types/id_source.py +6 -43
- uncountable/types/id_source_t.py +49 -0
- uncountable/types/identifier.py +5 -48
- uncountable/types/identifier_t.py +54 -0
- uncountable/types/input_attributes.py +2 -23
- uncountable/types/input_attributes_t.py +29 -0
- uncountable/types/inputs.py +4 -56
- uncountable/types/inputs_t.py +62 -0
- uncountable/types/outputs.py +2 -20
- uncountable/types/outputs_t.py +26 -0
- uncountable/types/permissions.py +2 -40
- uncountable/types/permissions_t.py +46 -0
- uncountable/types/phases.py +2 -17
- uncountable/types/phases_t.py +23 -0
- uncountable/types/post_base.py +2 -24
- uncountable/types/post_base_t.py +30 -0
- uncountable/types/recipe_identifiers.py +6 -56
- uncountable/types/recipe_identifiers_t.py +62 -0
- uncountable/types/recipe_inputs.py +3 -24
- uncountable/types/recipe_inputs_t.py +30 -0
- uncountable/types/recipe_links.py +3 -44
- uncountable/types/recipe_links_t.py +50 -0
- uncountable/types/recipe_metadata.py +4 -46
- uncountable/types/recipe_metadata_t.py +52 -0
- uncountable/types/recipe_output_metadata.py +2 -18
- uncountable/types/recipe_output_metadata_t.py +24 -0
- uncountable/types/recipe_tags.py +2 -17
- uncountable/types/recipe_tags_t.py +23 -0
- uncountable/types/recipe_workflow_steps.py +8 -82
- uncountable/types/recipe_workflow_steps_t.py +88 -0
- uncountable/types/recipes.py +2 -15
- uncountable/types/recipes_t.py +21 -0
- uncountable/types/response.py +2 -19
- uncountable/types/response_t.py +25 -0
- uncountable/types/units.py +2 -17
- uncountable/types/units_t.py +23 -0
- uncountable/types/users.py +2 -18
- uncountable/types/users_t.py +24 -0
- uncountable/types/workflows.py +3 -26
- uncountable/types/workflows_t.py +32 -0
- UncountablePythonSDK-0.0.39.dist-info/RECORD +0 -193
- {UncountablePythonSDK-0.0.39.dist-info → UncountablePythonSDK-0.0.40.dist-info}/top_level.txt +0 -0
|
@@ -1,88 +1,14 @@
|
|
|
1
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
1
|
# flake8: noqa: F821
|
|
3
2
|
# ruff: noqa: E402 Q003
|
|
4
3
|
# fmt: off
|
|
5
4
|
# isort: skip_file
|
|
6
|
-
from __future__ import annotations
|
|
7
|
-
import typing # noqa: F401
|
|
8
|
-
import datetime # noqa: F401
|
|
9
|
-
from decimal import Decimal # noqa: F401
|
|
10
|
-
from pkgs.strenum_compat import StrEnum
|
|
11
|
-
from dataclasses import dataclass
|
|
12
|
-
from pkgs.serialization import serial_class
|
|
13
|
-
from pkgs.serialization import serial_union_annotation
|
|
14
|
-
from . import identifier as identifier_t
|
|
15
|
-
|
|
16
|
-
__all__: list[str] = [
|
|
17
|
-
"RecipeWorkflowStepIdentifier",
|
|
18
|
-
"RecipeWorkflowStepIdentifierBase",
|
|
19
|
-
"RecipeWorkflowStepIdentifierDefault",
|
|
20
|
-
"RecipeWorkflowStepIdentifierKey",
|
|
21
|
-
"RecipeWorkflowStepIdentifierType",
|
|
22
|
-
"RecipeWorkflowStepIdentifierWorkflowStep",
|
|
23
|
-
"RecipeWorkflowStepPosition",
|
|
24
|
-
]
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
28
|
-
class RecipeWorkflowStepIdentifierType(StrEnum):
|
|
29
|
-
IDENTIFIER_KEY = "identifier_key"
|
|
30
|
-
DEFAULT = "default"
|
|
31
|
-
WORKFLOW_STEP = "workflow_step"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
35
|
-
@dataclass(kw_only=True)
|
|
36
|
-
class RecipeWorkflowStepIdentifierBase:
|
|
37
|
-
type: RecipeWorkflowStepIdentifierType
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
41
|
-
@serial_class(
|
|
42
|
-
parse_require={"type"},
|
|
43
|
-
)
|
|
44
|
-
@dataclass(kw_only=True)
|
|
45
|
-
class RecipeWorkflowStepIdentifierDefault(RecipeWorkflowStepIdentifierBase):
|
|
46
|
-
type: typing.Literal[RecipeWorkflowStepIdentifierType.DEFAULT] = RecipeWorkflowStepIdentifierType.DEFAULT
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
50
|
-
class RecipeWorkflowStepPosition(StrEnum):
|
|
51
|
-
FIRST = "first"
|
|
52
|
-
LAST = "last"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
56
|
-
@serial_class(
|
|
57
|
-
parse_require={"type"},
|
|
58
|
-
)
|
|
59
|
-
@dataclass(kw_only=True)
|
|
60
|
-
class RecipeWorkflowStepIdentifierWorkflowStep(RecipeWorkflowStepIdentifierBase):
|
|
61
|
-
type: typing.Literal[RecipeWorkflowStepIdentifierType.WORKFLOW_STEP] = RecipeWorkflowStepIdentifierType.WORKFLOW_STEP
|
|
62
|
-
workflow_step_key: identifier_t.IdentifierKey
|
|
63
|
-
position: RecipeWorkflowStepPosition = RecipeWorkflowStepPosition.FIRST
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
67
|
-
@serial_class(
|
|
68
|
-
parse_require={"type"},
|
|
69
|
-
)
|
|
70
|
-
@dataclass(kw_only=True)
|
|
71
|
-
class RecipeWorkflowStepIdentifierKey:
|
|
72
|
-
type: typing.Literal[RecipeWorkflowStepIdentifierType.IDENTIFIER_KEY] = RecipeWorkflowStepIdentifierType.IDENTIFIER_KEY
|
|
73
|
-
recipe_workflow_step_key: identifier_t.IdentifierKey
|
|
74
|
-
|
|
75
|
-
|
|
76
5
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
},
|
|
86
|
-
),
|
|
87
|
-
]
|
|
6
|
+
# Kept only for SDK backwards compatibility
|
|
7
|
+
from .recipe_workflow_steps_t import RecipeWorkflowStepIdentifierType as RecipeWorkflowStepIdentifierType
|
|
8
|
+
from .recipe_workflow_steps_t import RecipeWorkflowStepIdentifierBase as RecipeWorkflowStepIdentifierBase
|
|
9
|
+
from .recipe_workflow_steps_t import RecipeWorkflowStepIdentifierDefault as RecipeWorkflowStepIdentifierDefault
|
|
10
|
+
from .recipe_workflow_steps_t import RecipeWorkflowStepPosition as RecipeWorkflowStepPosition
|
|
11
|
+
from .recipe_workflow_steps_t import RecipeWorkflowStepIdentifierWorkflowStep as RecipeWorkflowStepIdentifierWorkflowStep
|
|
12
|
+
from .recipe_workflow_steps_t import RecipeWorkflowStepIdentifierKey as RecipeWorkflowStepIdentifierKey
|
|
13
|
+
from .recipe_workflow_steps_t import RecipeWorkflowStepIdentifier as RecipeWorkflowStepIdentifier
|
|
88
14
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# flake8: noqa: F821
|
|
3
|
+
# ruff: noqa: E402 Q003
|
|
4
|
+
# fmt: off
|
|
5
|
+
# isort: skip_file
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
import typing # noqa: F401
|
|
8
|
+
import datetime # noqa: F401
|
|
9
|
+
from decimal import Decimal # noqa: F401
|
|
10
|
+
from pkgs.strenum_compat import StrEnum
|
|
11
|
+
from dataclasses import dataclass
|
|
12
|
+
from pkgs.serialization import serial_class
|
|
13
|
+
from pkgs.serialization import serial_union_annotation
|
|
14
|
+
from . import identifier_t
|
|
15
|
+
|
|
16
|
+
__all__: list[str] = [
|
|
17
|
+
"RecipeWorkflowStepIdentifier",
|
|
18
|
+
"RecipeWorkflowStepIdentifierBase",
|
|
19
|
+
"RecipeWorkflowStepIdentifierDefault",
|
|
20
|
+
"RecipeWorkflowStepIdentifierKey",
|
|
21
|
+
"RecipeWorkflowStepIdentifierType",
|
|
22
|
+
"RecipeWorkflowStepIdentifierWorkflowStep",
|
|
23
|
+
"RecipeWorkflowStepPosition",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
28
|
+
class RecipeWorkflowStepIdentifierType(StrEnum):
|
|
29
|
+
IDENTIFIER_KEY = "identifier_key"
|
|
30
|
+
DEFAULT = "default"
|
|
31
|
+
WORKFLOW_STEP = "workflow_step"
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
35
|
+
@dataclass(kw_only=True)
|
|
36
|
+
class RecipeWorkflowStepIdentifierBase:
|
|
37
|
+
type: RecipeWorkflowStepIdentifierType
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
41
|
+
@serial_class(
|
|
42
|
+
parse_require={"type"},
|
|
43
|
+
)
|
|
44
|
+
@dataclass(kw_only=True)
|
|
45
|
+
class RecipeWorkflowStepIdentifierDefault(RecipeWorkflowStepIdentifierBase):
|
|
46
|
+
type: typing.Literal[RecipeWorkflowStepIdentifierType.DEFAULT] = RecipeWorkflowStepIdentifierType.DEFAULT
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
50
|
+
class RecipeWorkflowStepPosition(StrEnum):
|
|
51
|
+
FIRST = "first"
|
|
52
|
+
LAST = "last"
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
56
|
+
@serial_class(
|
|
57
|
+
parse_require={"type"},
|
|
58
|
+
)
|
|
59
|
+
@dataclass(kw_only=True)
|
|
60
|
+
class RecipeWorkflowStepIdentifierWorkflowStep(RecipeWorkflowStepIdentifierBase):
|
|
61
|
+
type: typing.Literal[RecipeWorkflowStepIdentifierType.WORKFLOW_STEP] = RecipeWorkflowStepIdentifierType.WORKFLOW_STEP
|
|
62
|
+
workflow_step_key: identifier_t.IdentifierKey
|
|
63
|
+
position: RecipeWorkflowStepPosition = RecipeWorkflowStepPosition.FIRST
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
67
|
+
@serial_class(
|
|
68
|
+
parse_require={"type"},
|
|
69
|
+
)
|
|
70
|
+
@dataclass(kw_only=True)
|
|
71
|
+
class RecipeWorkflowStepIdentifierKey:
|
|
72
|
+
type: typing.Literal[RecipeWorkflowStepIdentifierType.IDENTIFIER_KEY] = RecipeWorkflowStepIdentifierType.IDENTIFIER_KEY
|
|
73
|
+
recipe_workflow_step_key: identifier_t.IdentifierKey
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
77
|
+
RecipeWorkflowStepIdentifier = typing.Annotated[
|
|
78
|
+
typing.Union[RecipeWorkflowStepIdentifierDefault, RecipeWorkflowStepIdentifierWorkflowStep, RecipeWorkflowStepIdentifierKey],
|
|
79
|
+
serial_union_annotation(
|
|
80
|
+
discriminator="type",
|
|
81
|
+
discriminator_map={
|
|
82
|
+
"default": RecipeWorkflowStepIdentifierDefault,
|
|
83
|
+
"workflow_step": RecipeWorkflowStepIdentifierWorkflowStep,
|
|
84
|
+
"identifier_key": RecipeWorkflowStepIdentifierKey,
|
|
85
|
+
},
|
|
86
|
+
),
|
|
87
|
+
]
|
|
88
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
uncountable/types/recipes.py
CHANGED
|
@@ -1,21 +1,8 @@
|
|
|
1
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
1
|
# flake8: noqa: F821
|
|
3
2
|
# ruff: noqa: E402 Q003
|
|
4
3
|
# fmt: off
|
|
5
4
|
# isort: skip_file
|
|
6
|
-
from __future__ import annotations
|
|
7
|
-
import typing # noqa: F401
|
|
8
|
-
import datetime # noqa: F401
|
|
9
|
-
from decimal import Decimal # noqa: F401
|
|
10
|
-
from dataclasses import dataclass
|
|
11
|
-
|
|
12
|
-
__all__: list[str] = [
|
|
13
|
-
"RecipeAttributeFormatting",
|
|
14
|
-
]
|
|
15
|
-
|
|
16
|
-
|
|
17
5
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
background_color: str
|
|
6
|
+
# Kept only for SDK backwards compatibility
|
|
7
|
+
from .recipes_t import RecipeAttributeFormatting as RecipeAttributeFormatting
|
|
21
8
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# flake8: noqa: F821
|
|
3
|
+
# ruff: noqa: E402 Q003
|
|
4
|
+
# fmt: off
|
|
5
|
+
# isort: skip_file
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
import typing # noqa: F401
|
|
8
|
+
import datetime # noqa: F401
|
|
9
|
+
from decimal import Decimal # noqa: F401
|
|
10
|
+
from dataclasses import dataclass
|
|
11
|
+
|
|
12
|
+
__all__: list[str] = [
|
|
13
|
+
"RecipeAttributeFormatting",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
18
|
+
@dataclass(kw_only=True)
|
|
19
|
+
class RecipeAttributeFormatting:
|
|
20
|
+
background_color: str
|
|
21
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
uncountable/types/response.py
CHANGED
|
@@ -1,25 +1,8 @@
|
|
|
1
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
1
|
# flake8: noqa: F821
|
|
3
2
|
# ruff: noqa: E402 Q003
|
|
4
3
|
# fmt: off
|
|
5
4
|
# isort: skip_file
|
|
6
|
-
from __future__ import annotations
|
|
7
|
-
import typing # noqa: F401
|
|
8
|
-
import datetime # noqa: F401
|
|
9
|
-
from decimal import Decimal # noqa: F401
|
|
10
|
-
from dataclasses import dataclass
|
|
11
|
-
from pkgs.serialization import serial_class
|
|
12
|
-
|
|
13
|
-
__all__: list[str] = [
|
|
14
|
-
"Response",
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
|
|
18
5
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
)
|
|
22
|
-
@dataclass(kw_only=True)
|
|
23
|
-
class Response:
|
|
24
|
-
status: typing.Literal["ok"] = "ok"
|
|
6
|
+
# Kept only for SDK backwards compatibility
|
|
7
|
+
from .response_t import Response as Response
|
|
25
8
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# flake8: noqa: F821
|
|
3
|
+
# ruff: noqa: E402 Q003
|
|
4
|
+
# fmt: off
|
|
5
|
+
# isort: skip_file
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
import typing # noqa: F401
|
|
8
|
+
import datetime # noqa: F401
|
|
9
|
+
from decimal import Decimal # noqa: F401
|
|
10
|
+
from dataclasses import dataclass
|
|
11
|
+
from pkgs.serialization import serial_class
|
|
12
|
+
|
|
13
|
+
__all__: list[str] = [
|
|
14
|
+
"Response",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
19
|
+
@serial_class(
|
|
20
|
+
parse_require={"status"},
|
|
21
|
+
)
|
|
22
|
+
@dataclass(kw_only=True)
|
|
23
|
+
class Response:
|
|
24
|
+
status: typing.Literal["ok"] = "ok"
|
|
25
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
uncountable/types/units.py
CHANGED
|
@@ -1,23 +1,8 @@
|
|
|
1
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
1
|
# flake8: noqa: F821
|
|
3
2
|
# ruff: noqa: E402 Q003
|
|
4
3
|
# fmt: off
|
|
5
4
|
# isort: skip_file
|
|
6
|
-
from __future__ import annotations
|
|
7
|
-
import typing # noqa: F401
|
|
8
|
-
import datetime # noqa: F401
|
|
9
|
-
from decimal import Decimal # noqa: F401
|
|
10
|
-
from dataclasses import dataclass
|
|
11
|
-
from . import base as base_t
|
|
12
|
-
|
|
13
|
-
__all__: list[str] = [
|
|
14
|
-
"SimpleUnit",
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
|
|
18
5
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
unit_id: base_t.ObjectId
|
|
22
|
-
name: str
|
|
6
|
+
# Kept only for SDK backwards compatibility
|
|
7
|
+
from .units_t import SimpleUnit as SimpleUnit
|
|
23
8
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# flake8: noqa: F821
|
|
3
|
+
# ruff: noqa: E402 Q003
|
|
4
|
+
# fmt: off
|
|
5
|
+
# isort: skip_file
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
import typing # noqa: F401
|
|
8
|
+
import datetime # noqa: F401
|
|
9
|
+
from decimal import Decimal # noqa: F401
|
|
10
|
+
from dataclasses import dataclass
|
|
11
|
+
from . import base_t
|
|
12
|
+
|
|
13
|
+
__all__: list[str] = [
|
|
14
|
+
"SimpleUnit",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
19
|
+
@dataclass(kw_only=True)
|
|
20
|
+
class SimpleUnit:
|
|
21
|
+
unit_id: base_t.ObjectId
|
|
22
|
+
name: str
|
|
23
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
uncountable/types/users.py
CHANGED
|
@@ -1,24 +1,8 @@
|
|
|
1
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
1
|
# flake8: noqa: F821
|
|
3
2
|
# ruff: noqa: E402 Q003
|
|
4
3
|
# fmt: off
|
|
5
4
|
# isort: skip_file
|
|
6
|
-
from __future__ import annotations
|
|
7
|
-
import typing # noqa: F401
|
|
8
|
-
import datetime # noqa: F401
|
|
9
|
-
from decimal import Decimal # noqa: F401
|
|
10
|
-
from dataclasses import dataclass
|
|
11
|
-
from . import base as base_t
|
|
12
|
-
|
|
13
|
-
__all__: list[str] = [
|
|
14
|
-
"SimpleUser",
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
|
|
18
5
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
user_id: base_t.ObjectId
|
|
22
|
-
display_name: str
|
|
23
|
-
email: str
|
|
6
|
+
# Kept only for SDK backwards compatibility
|
|
7
|
+
from .users_t import SimpleUser as SimpleUser
|
|
24
8
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# flake8: noqa: F821
|
|
3
|
+
# ruff: noqa: E402 Q003
|
|
4
|
+
# fmt: off
|
|
5
|
+
# isort: skip_file
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
import typing # noqa: F401
|
|
8
|
+
import datetime # noqa: F401
|
|
9
|
+
from decimal import Decimal # noqa: F401
|
|
10
|
+
from dataclasses import dataclass
|
|
11
|
+
from . import base_t
|
|
12
|
+
|
|
13
|
+
__all__: list[str] = [
|
|
14
|
+
"SimpleUser",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
19
|
+
@dataclass(kw_only=True)
|
|
20
|
+
class SimpleUser:
|
|
21
|
+
user_id: base_t.ObjectId
|
|
22
|
+
display_name: str
|
|
23
|
+
email: str
|
|
24
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
uncountable/types/workflows.py
CHANGED
|
@@ -1,32 +1,9 @@
|
|
|
1
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
1
|
# flake8: noqa: F821
|
|
3
2
|
# ruff: noqa: E402 Q003
|
|
4
3
|
# fmt: off
|
|
5
4
|
# isort: skip_file
|
|
6
|
-
from __future__ import annotations
|
|
7
|
-
import typing # noqa: F401
|
|
8
|
-
import datetime # noqa: F401
|
|
9
|
-
from decimal import Decimal # noqa: F401
|
|
10
|
-
from dataclasses import dataclass
|
|
11
|
-
from . import base as base_t
|
|
12
|
-
|
|
13
|
-
__all__: list[str] = [
|
|
14
|
-
"SimpleWorkflow",
|
|
15
|
-
"SimpleWorkflowStep",
|
|
16
|
-
]
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
# DO NOT MODIFY -- This file is generated by type_spec
|
|
20
|
-
@dataclass(kw_only=True)
|
|
21
|
-
class SimpleWorkflowStep:
|
|
22
|
-
workflow_step_id: base_t.ObjectId
|
|
23
|
-
name: typing.Optional[str]
|
|
24
|
-
|
|
25
|
-
|
|
26
5
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
name: str
|
|
31
|
-
workflow_steps: list[SimpleWorkflowStep]
|
|
6
|
+
# Kept only for SDK backwards compatibility
|
|
7
|
+
from .workflows_t import SimpleWorkflowStep as SimpleWorkflowStep
|
|
8
|
+
from .workflows_t import SimpleWorkflow as SimpleWorkflow
|
|
32
9
|
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
2
|
+
# flake8: noqa: F821
|
|
3
|
+
# ruff: noqa: E402 Q003
|
|
4
|
+
# fmt: off
|
|
5
|
+
# isort: skip_file
|
|
6
|
+
from __future__ import annotations
|
|
7
|
+
import typing # noqa: F401
|
|
8
|
+
import datetime # noqa: F401
|
|
9
|
+
from decimal import Decimal # noqa: F401
|
|
10
|
+
from dataclasses import dataclass
|
|
11
|
+
from . import base_t
|
|
12
|
+
|
|
13
|
+
__all__: list[str] = [
|
|
14
|
+
"SimpleWorkflow",
|
|
15
|
+
"SimpleWorkflowStep",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
20
|
+
@dataclass(kw_only=True)
|
|
21
|
+
class SimpleWorkflowStep:
|
|
22
|
+
workflow_step_id: base_t.ObjectId
|
|
23
|
+
name: typing.Optional[str]
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
27
|
+
@dataclass(kw_only=True)
|
|
28
|
+
class SimpleWorkflow:
|
|
29
|
+
workflow_id: base_t.ObjectId
|
|
30
|
+
name: str
|
|
31
|
+
workflow_steps: list[SimpleWorkflowStep]
|
|
32
|
+
# DO NOT MODIFY -- This file is generated by type_spec
|
|
@@ -1,193 +0,0 @@
|
|
|
1
|
-
docs/.gitignore,sha256=_ebkZUcwfvfnGEJ95rfj1lxoBNd6EE9ZvtOc7FsbfFE,7
|
|
2
|
-
docs/conf.py,sha256=YF5J-9g_Wg8wXmyHsGaE8xYlDEzqocNl3UWUmP0CwBg,1702
|
|
3
|
-
docs/index.md,sha256=eEdirX_Ds6ICTRtIS5iT4irCquHcQyKN7E4M5QP9T8A,257
|
|
4
|
-
docs/justfile,sha256=cvNcpb-ByPOF2aCrFlg3DDZBoYMx5W8xGdr13m9HcnI,215
|
|
5
|
-
docs/quickstart.md,sha256=3GuJ0MB1O5kjlsrgAmdSkDq0rYqATrYy-tzEHDy8H-c,422
|
|
6
|
-
docs/requirements.txt,sha256=NnB0-jOOufUvD3q1csl7WvQ8oHOD-5emqp_SWUXExI0,138
|
|
7
|
-
docs/static/logo_blue.png,sha256=SyYpMTVhhBbhF5Wl8lWaVwz-_p1MIR6dW6bVhufQRME,46708
|
|
8
|
-
docs/static/favicons/android-chrome-192x192.png,sha256=XoF-AhD55JlSBDGsEPJKfT_VeXT-awhwKyZnxLhrwvk,1369
|
|
9
|
-
docs/static/favicons/android-chrome-512x512.png,sha256=1S4xwY9YtJQ5ifFsZ-DOzssoyBYs0t9uwdOUmYx0Xso,3888
|
|
10
|
-
docs/static/favicons/apple-touch-icon.png,sha256=4qdKI-pFHxrot00cFGY-_jD7Kame6Ct_klQBNmW3j80,1403
|
|
11
|
-
docs/static/favicons/browserconfig.xml,sha256=oU7ZjY1qKLU992MIOAOZ7h-uVyqmEah2TKzyae4Uw0s,263
|
|
12
|
-
docs/static/favicons/favicon-16x16.png,sha256=M4r4A3_NVuw3h5pWZs5-CmhmquSMiKaNcCqyyJRjNmU,392
|
|
13
|
-
docs/static/favicons/favicon-32x32.png,sha256=U4UU652zGnSeU3P9kUqxPeEnVf6zhtdNdNwGz1E40UU,511
|
|
14
|
-
docs/static/favicons/manifest.json,sha256=6q_3nZkcg_x0xut4eE-xpdeMY1TydwiZIcbXlLAq9X8,437
|
|
15
|
-
docs/static/favicons/mstile-150x150.png,sha256=eAK4QdEofhdLtfmjuPTpnX3MJqYnvGXsHYUjlcQekyY,1035
|
|
16
|
-
docs/static/favicons/safari-pinned-tab.svg,sha256=S84fRnz0ZxLnQrKtmmFZytiRyu1xLtMR_RVy5jmwU7k,1926
|
|
17
|
-
examples/async_batch.py,sha256=CffQ8O9drJ-Mdd6S5DnMIOBsHv5aVkTZrD3l3xBnB4s,1094
|
|
18
|
-
examples/create_entity.py,sha256=noZdtJ5f9Wfiob3zUH-8bDVbrCPJnFtXFk_W9pSjvUA,664
|
|
19
|
-
examples/edit_recipe_inputs.py,sha256=f1zpK2T00JNQdbh7R01Sns1D_3TTgj-u8-YInoczRX8,1541
|
|
20
|
-
examples/upload_files.py,sha256=tUfKFqiqwnw08OL5Y8_e4j5pSRhp94cFex8XTuVa_ig,487
|
|
21
|
-
pkgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
pkgs/argument_parser/__init__.py,sha256=CsQ6QoPKSLLRVl-z6URAmPkiUL9ZPZoV4rJHgy_-RjA,385
|
|
23
|
-
pkgs/argument_parser/_is_enum.py,sha256=Gw6jJa8nBwYGqXwwCZbSnWL8Rvr5alkg5lSVAqXtOZM,257
|
|
24
|
-
pkgs/argument_parser/_is_namedtuple.py,sha256=Rjc1bKanIPPogl3qG5JPBxglG1TqWYOo1nxxhBASQWY,265
|
|
25
|
-
pkgs/argument_parser/argument_parser.py,sha256=pcU4IhgFkea-I6PhHUex43BoVaQvnoRV-Mw3qOqCdBQ,17274
|
|
26
|
-
pkgs/argument_parser/case_convert.py,sha256=NuJLJUJRbyVb6_Slen4uqaStEHbcOS1d-hBBfDrrw-c,605
|
|
27
|
-
pkgs/serialization/__init__.py,sha256=LifasRW0a50A3qRFmo2bf3FQ6TXhZWOTz2-CVTgPjcQ,753
|
|
28
|
-
pkgs/serialization/missing_sentry.py,sha256=aM_9KxbCk9dVvXvcOKgkIQBqFWvLhv8QlIUCiuFEXMo,806
|
|
29
|
-
pkgs/serialization/opaque_key.py,sha256=FIfXEE0DA1U8R_taFbQ1RCoTSgehrPjP06-qvo-GeNQ,177
|
|
30
|
-
pkgs/serialization/serial_class.py,sha256=r0hrQdIbJA_X0W0_jKEVrxi_JzVRT9qHCjsUgGu3cCI,5290
|
|
31
|
-
pkgs/serialization/serial_union.py,sha256=z8Ptj4bVHyb1ROfg0UPTwZ6Ef6iXLr0YJfAH5o_PU9A,2601
|
|
32
|
-
pkgs/serialization_util/__init__.py,sha256=MVKqHTUl2YnWZAFG9xCxu1SgmkQ5xPofrAGlYg6h7rI,330
|
|
33
|
-
pkgs/serialization_util/_get_type_for_serialization.py,sha256=dW5_W9MFd6wgWfW5qlWork-GBb-QFLtiOZkjk2Zqn2M,1177
|
|
34
|
-
pkgs/serialization_util/convert_to_snakecase.py,sha256=H2BAo5ZdcCDN77RpLb-uP0s7-FQ5Ukwnsd3VYc1vD0M,583
|
|
35
|
-
pkgs/serialization_util/serialization_helpers.py,sha256=B8W82-KT10nQYmDk5uhAqB5QNS-dsxzXMFhtTmooMqw,6365
|
|
36
|
-
pkgs/strenum_compat/__init__.py,sha256=wXRFeNvBm8RU6dy1PFJ5sRLgUIEeH_DVR95Sv5qpGbk,59
|
|
37
|
-
pkgs/strenum_compat/strenum_compat.py,sha256=uOUAgpYTjHs1MX8dG81jRlyTkt3KNbkV_25zp7xTX2s,36
|
|
38
|
-
pkgs/type_spec/__init__.py,sha256=h5DmJTca4QVV10sZR1x0-MlkZfuGYDfapR3zHvXfzto,19
|
|
39
|
-
pkgs/type_spec/__main__.py,sha256=5bJaX9Y_-FavP0qwzhk-z-V97UY7uaezJTa1zhO_HHQ,1048
|
|
40
|
-
pkgs/type_spec/builder.py,sha256=xQcY2HcQTI2FSOMycgx3yD23_Oz3_LfWdyW65pDaHoc,46667
|
|
41
|
-
pkgs/type_spec/config.py,sha256=INfEiDcUsZFUKasHprsE6i33siPB0RnfmTKOsWcGnQ8,5043
|
|
42
|
-
pkgs/type_spec/emit_io_ts.py,sha256=Ghd8XYqyNYldHQDepwa9GLfHXcoi48ztBw84K28ETic,5707
|
|
43
|
-
pkgs/type_spec/emit_open_api.py,sha256=NVVXAvjPHC_MPqch_SMY6klj3kPnckOa7fJsb-ZsFTs,24371
|
|
44
|
-
pkgs/type_spec/emit_open_api_util.py,sha256=9tWLMT6NTeCa2caO8DdWo6aYoi0b4AEFiAXNaaQKJIs,2373
|
|
45
|
-
pkgs/type_spec/emit_python.py,sha256=uZ4lRRbYr9XcRDX307g5yUQyzs9xcAssbq6XVW55hc8,45177
|
|
46
|
-
pkgs/type_spec/emit_typescript.py,sha256=cdr5h8N70PuwORcvhURUujzwH9r1LVwJB8V2EoipGkw,17917
|
|
47
|
-
pkgs/type_spec/emit_typescript_util.py,sha256=sR7ys3Ilnh6SQiXJbfYk4pxfOu0bDjbUFTEYEW-ud6c,863
|
|
48
|
-
pkgs/type_spec/load_types.py,sha256=xEHwdB_miR3vNs161Oy1luafE0VC-yk9-utAyCJmbEo,3629
|
|
49
|
-
pkgs/type_spec/open_api_util.py,sha256=IGh-_snGPST_P_8FdYtO8MTEa9PUxRW6Rzg9X9EgQik,7114
|
|
50
|
-
pkgs/type_spec/test.py,sha256=4ueujBq-pEgnX3Z69HyPmD-bullFXmpixcpVzfOkhP4,489
|
|
51
|
-
pkgs/type_spec/util.py,sha256=6m6MPfY-SwjyZf2FWQKclswWB5o7gcdd-3tdpViPYOQ,4844
|
|
52
|
-
pkgs/type_spec/actions_registry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
-
pkgs/type_spec/actions_registry/__main__.py,sha256=JGwKxcAmrQdbpVR2vwknoimN1Q-r5h4SADw1cYLYzgk,4331
|
|
54
|
-
pkgs/type_spec/actions_registry/emit_typescript.py,sha256=ben0W7qwaVCzLO-t3NEJPPNGEE_6sKLdJMuAh8aMBnw,6044
|
|
55
|
-
pkgs/type_spec/parts/base.py.prepart,sha256=wGNoDyQnLolHRZGRwHQX5TrPfKnu558NXCocYvqyroc,2174
|
|
56
|
-
pkgs/type_spec/parts/base.ts.prepart,sha256=2FJJvpg2olCcavxj0nbYWdwKl6KeScour2JjSvN42l8,1001
|
|
57
|
-
pkgs/type_spec/type_info/__main__.py,sha256=pmVjVqXyVh8vKTNCTFgz80Sg74C5BKToP3E6GS-X_So,857
|
|
58
|
-
pkgs/type_spec/type_info/emit_type_info.py,sha256=XqAyJgzkYY2woG5O-IA5O9gnfja_slTZGd-GnS7xPts,13280
|
|
59
|
-
pkgs/type_spec/value_spec/__init__.py,sha256=Z-grlcZtxAfEXhPHsK0nD7PFLGsv4eqvunaPN7_TA84,83
|
|
60
|
-
pkgs/type_spec/value_spec/__main__.py,sha256=-9L5pXYx02plnTetqNknaUZPieLRtzbyWdZDT6B-cWA,8294
|
|
61
|
-
pkgs/type_spec/value_spec/convert_type.py,sha256=SAYyEV6orQJJbkXSE4hhtOQJ2vKUXJCKPeYPrB8G9oA,2272
|
|
62
|
-
pkgs/type_spec/value_spec/emit_python.py,sha256=rjg6LIGYdaagrZ19XpDfW_Z7LPNwCMDceBje5dsMFbw,6959
|
|
63
|
-
pkgs/type_spec/value_spec/types.py,sha256=a2zxbbCRWepY1l8OtjeCDKgBKFPFHVgV99oP6pTtaro,441
|
|
64
|
-
uncountable/__init__.py,sha256=8l8XWNCKsu7TG94c-xa2KHpDegvxDC2FyQISdWC763Y,89
|
|
65
|
-
uncountable/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
-
uncountable/core/__init__.py,sha256=RFv0kO6rKFf1PtBPu83hCGmxqkJamRtsgQ9_-ztw7tA,341
|
|
67
|
-
uncountable/core/async_batch.py,sha256=Zo02TICZ7AK81Qa02NQ8fp8uaijQph1FEta28K3cKb0,749
|
|
68
|
-
uncountable/core/client.py,sha256=50vR11GwwyTc3qOIahUxCJK77zCM7LOXwbZdHoZCZgY,10168
|
|
69
|
-
uncountable/core/file_upload.py,sha256=t4cutIFB5rNN2qVCx3H0HotSjCSJSxis2_QBarDuXyc,2833
|
|
70
|
-
uncountable/core/types.py,sha256=s2CjqYJpsmbC7xMwxxT7kJ_V9bwokrjjWVVjpMcQpKI,333
|
|
71
|
-
uncountable/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
-
uncountable/integration/construct_client.py,sha256=N3K-wck7teqvHTrOh0N2bGF3u6kyuwQvgo7gsKLihQ0,1077
|
|
73
|
-
uncountable/integration/cron.py,sha256=DNnMkeLYi70U-3wrcDAX382FgEGq16KL6xy-6OBv5Us,938
|
|
74
|
-
uncountable/integration/entrypoint.py,sha256=MNXl9xv0N03V3_0vplckWlUio2CDFJ0jsjM8uvY1dTE,1404
|
|
75
|
-
uncountable/integration/job.py,sha256=u4Vhm9l5KUvex7I7R_ysBHjmm1BBB1KvnjRvZvFkOig,807
|
|
76
|
-
uncountable/integration/server.py,sha256=5Wh80VyfgUUHA5NiFGn9LjS4KJ9zJz3QbNTLLKhFAso,3342
|
|
77
|
-
uncountable/integration/types.py,sha256=n9idu2_qHOA5CQdE6NK8HS6aZ8ugTZKTfTTnm4sy8tI,2066
|
|
78
|
-
uncountable/integration/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
-
uncountable/integration/db/connect.py,sha256=YtQHJ1DBGPhxKFRCfiXqohOYUceKSxMVOJ88aPI48Ug,181
|
|
80
|
-
uncountable/integration/executors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
-
uncountable/integration/executors/script_executor.py,sha256=hM8E-aU8zyM6ZcBtqAqInKZ_BF93RLqEA0dU7y5FhWQ,841
|
|
82
|
-
uncountable/types/__init__.py,sha256=A2vOgaDMSJUtmQsihf3VJKmdrFl3eCN9yLgiF823Pgk,7713
|
|
83
|
-
uncountable/types/async_batch.py,sha256=ErGB_jCF1LQF5bwomvfWSJk5uiomoa6OY-ajx3mdaXk,1781
|
|
84
|
-
uncountable/types/async_batch_processor.py,sha256=frAwr4RUFza3onLO5xmeneR8rSDoIZTyO9m-2KtedQI,7471
|
|
85
|
-
uncountable/types/base.py,sha256=XXjZXexx0xWFUxMMhW8i9nIL6n8dsZVsHwdgnhZ0zJ4,2714
|
|
86
|
-
uncountable/types/calculations.py,sha256=W7OEDEQE5k3-5iw1026ZVVvSP68GRnpD63mWMT_JsbA,567
|
|
87
|
-
uncountable/types/chemical_structure.py,sha256=Qfeq0Iwgvd0Jq42fSsa5TPeeL_nH0FOctbmLGBlZqY4,763
|
|
88
|
-
uncountable/types/client_base.py,sha256=F5ur4iY5qjX-DZYzrs49wDDnbR40X1MeHN3GS_vs3Es,64544
|
|
89
|
-
uncountable/types/curves.py,sha256=OuSM9d12rnYVhkRAE1Zh4a7yNpKF-6q7nJj7EbPsz7c,1313
|
|
90
|
-
uncountable/types/entity.py,sha256=dbzG_mQvUsdasUc4irun3T00cK99kdNJDTk9PFh0HvM,11642
|
|
91
|
-
uncountable/types/experiment_groups.py,sha256=J6fI7B3ZvY8U0WDGp4hxgBB9W5JuvkaRkphUZJPygmg,604
|
|
92
|
-
uncountable/types/field_values.py,sha256=c8091h1I5QQFMfq4Tfo1KHg0W5okP3JYGMExpT2iSHw,1675
|
|
93
|
-
uncountable/types/fields.py,sha256=8xlJ4uPzu1Al2aLADc63Fc3oihV2h7K7hV6_qziiLpM,575
|
|
94
|
-
uncountable/types/id_source.py,sha256=NLnJf7SZJLS01wd4aflhdzufkMO7p0vzY2KHXQdC4-M,1346
|
|
95
|
-
uncountable/types/identifier.py,sha256=JnroIPBCl66a3vnDJ5052MKZIgoUgXnv2aS7kDCXA0Q,1460
|
|
96
|
-
uncountable/types/input_attributes.py,sha256=Kky2LQwNqTBp3Fn0oH4wRQJ7hIq5DjheGZoJUNbAWAg,831
|
|
97
|
-
uncountable/types/inputs.py,sha256=8UibnYdtigLEuc-ndkU_O7VXsvSmzUsgEz_C-JiZOuo,1622
|
|
98
|
-
uncountable/types/outputs.py,sha256=YsK9rP9DCEs1YK6LdleWdUlR44Fson1hJ3tKcJHKrSs,676
|
|
99
|
-
uncountable/types/permissions.py,sha256=i0vFwVvmmnInrA5qW8uuo0_tM6KYn3VYZ75d9084Vko,1625
|
|
100
|
-
uncountable/types/phases.py,sha256=Dj6KLZ9fKDkHDSPXz_p1ztTMPbU27aHufTntthCXEtE,555
|
|
101
|
-
uncountable/types/post_base.py,sha256=2et3TDnFChZcx0RWU-18RJHw9Yiyj2TJz-2tByHXwaI,770
|
|
102
|
-
uncountable/types/recipe_identifiers.py,sha256=FqbZDxU_hbQOrTDotly_K45lmp30A_4yn79VEwXNn3I,1773
|
|
103
|
-
uncountable/types/recipe_inputs.py,sha256=t5nFzuF1AU6SUHpya6xKHSlcckmt3XxAuk9ofjZ2oGU,746
|
|
104
|
-
uncountable/types/recipe_links.py,sha256=0u-Z61gL7eLMobLUAlU6owtcqF0j1EpuH2SXWSg6mIs,1411
|
|
105
|
-
uncountable/types/recipe_metadata.py,sha256=8B1jJmcHmGpzm_esegCB7_8T_dnGk_h2Q_nTkmNa5CM,1442
|
|
106
|
-
uncountable/types/recipe_output_metadata.py,sha256=mSCRkjsU4xjuGz7oOzNr0fmA2j1CYqg8ICaDUXRjb18,618
|
|
107
|
-
uncountable/types/recipe_tags.py,sha256=YwtDXkV9ShitmsMJsAF9ygQOqH-oPlPLjn6KEbLtpKY,586
|
|
108
|
-
uncountable/types/recipe_workflow_steps.py,sha256=jw9kyjWXWboKElxQLAr-wOYNqcJkNIqysJfQ-BCjMik,3002
|
|
109
|
-
uncountable/types/recipes.py,sha256=U1QxgZPGDYM7HfTm7Y401-FvAh5VPigd9b34b-3kQTA,554
|
|
110
|
-
uncountable/types/response.py,sha256=1vSfw7u5k5vrbQFQbVrT3JU7vkOHa86jY5T0kGVaHvY,625
|
|
111
|
-
uncountable/types/units.py,sha256=OXfqtShjiAbglgqsTar2TfW9d9SEcUJd2-4nbRtj99M,570
|
|
112
|
-
uncountable/types/users.py,sha256=Z-DRoyfFXeoPUFhPu6V_vXuxgiZIo-q3i_3xlt0nSIc,593
|
|
113
|
-
uncountable/types/workflows.py,sha256=3IaJOC8JPkGxqAcw0UAqMMT0Vp4qJsB1cjVX5lvm3Yk,830
|
|
114
|
-
uncountable/types/api/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
115
|
-
uncountable/types/api/batch/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
116
|
-
uncountable/types/api/batch/execute_batch.py,sha256=PiulMHjF6KQ6XvPYhkW20m1GaL2PjAwHtsGhSESf-0g,1701
|
|
117
|
-
uncountable/types/api/batch/execute_batch_load_async.py,sha256=zF6Y8wIffAfc_wESdCJbg9M8x_ZV1f8SAhOv-fxecz8,890
|
|
118
|
-
uncountable/types/api/chemical/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
119
|
-
uncountable/types/api/chemical/convert_chemical_formats.py,sha256=ra2OhLvK37JmuOp5KDzlr0fT5f-BT6Wu4yfsroNH-ig,1310
|
|
120
|
-
uncountable/types/api/entity/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
121
|
-
uncountable/types/api/entity/create_entities.py,sha256=TPjOasIl5HqIFY4X1cJiOPKXMd4l9d9IzqV_K_Ajm58,1708
|
|
122
|
-
uncountable/types/api/entity/create_entity.py,sha256=5j6rWG_bHXXJJTVaaqEh3AHN2o3Bvai-IhYP0x3uv1c,1878
|
|
123
|
-
uncountable/types/api/entity/get_entities_data.py,sha256=kXmxjXj5zpVb-DmSv8TlTqaOVE_TQ3KaCLAZFkgwiMg,1175
|
|
124
|
-
uncountable/types/api/entity/list_entities.py,sha256=3nSX8so8Ns7hj_7oeonGJ1SY9r242YRrOKi7uAtVSXE,1702
|
|
125
|
-
uncountable/types/api/entity/lock_entity.py,sha256=qLE2eMbvkk56aqKnjasbh0L-ONzvkxdB65lk3JBnNsw,1034
|
|
126
|
-
uncountable/types/api/entity/resolve_entity_ids.py,sha256=EIJvNn0_21l6fEZrB4G9vvcSatRcyZu5PaaxN8AZiNg,1091
|
|
127
|
-
uncountable/types/api/entity/set_values.py,sha256=uEJORWJMDuLNpuovGhsxY5n9Kcg67Pqfyg4A6IaDRHA,963
|
|
128
|
-
uncountable/types/api/entity/transition_entity_phase.py,sha256=re3NoGL-xDdBy_uVrt4XsdbP-Bxmy4Duv4lZlR2pB1s,1808
|
|
129
|
-
uncountable/types/api/entity/unlock_entity.py,sha256=6gBKcy74OZlk6Gw8k00wGD83Wiq3ZFiBJ9QIGTeh6WM,983
|
|
130
|
-
uncountable/types/api/equipment/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
131
|
-
uncountable/types/api/equipment/associate_equipment_input.py,sha256=al6bo34GZv9OXqyX33Kbc9pVZN1VtldogLrh3gWoA-E,998
|
|
132
|
-
uncountable/types/api/field_options/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
133
|
-
uncountable/types/api/field_options/upsert_field_options.py,sha256=J4WwaSUsoNCNFT4DNjKJurKfCIeufB2C3KPcCacISck,1149
|
|
134
|
-
uncountable/types/api/id_source/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
135
|
-
uncountable/types/api/id_source/list_id_source.py,sha256=5yiQmRjKz9YQtKq7cbY5iA3b12Qdlcq79CpYA0_Sf9Y,1162
|
|
136
|
-
uncountable/types/api/id_source/match_id_source.py,sha256=ERmm_0qOxA4Si0fNeNY6uouoSIorHvZ07vNvrUSpkbw,1053
|
|
137
|
-
uncountable/types/api/input_groups/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
138
|
-
uncountable/types/api/input_groups/get_input_group_names.py,sha256=BnvBn7J_faJB6-cr2PStui8m31ZMLA5ZvJ6kbkxyGOM,1038
|
|
139
|
-
uncountable/types/api/inputs/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
140
|
-
uncountable/types/api/inputs/create_inputs.py,sha256=t3YLB15VfI9PuIx66tuQVpEQQiHpTsK_WcGkzGzFfUo,1680
|
|
141
|
-
uncountable/types/api/inputs/get_input_data.py,sha256=RMX68UXqNI-2wT-O433Iq81MOrzpqubM4T53vVhB9R0,2183
|
|
142
|
-
uncountable/types/api/inputs/get_input_names.py,sha256=Qrr9t-mWg2VAzZbD2161d-aGJLP5yTMv-p25P2-SxWQ,1158
|
|
143
|
-
uncountable/types/api/inputs/get_inputs_data.py,sha256=5CxzNSILjW4Y-weeklvpywaHr3HudKDj2hJa5YJvgEc,1846
|
|
144
|
-
uncountable/types/api/inputs/set_input_attribute_values.py,sha256=Za67FqYyjxFYMC1pbJkl0bW3ZySNHjSnlMUJGXl-q9I,1346
|
|
145
|
-
uncountable/types/api/inputs/set_input_category.py,sha256=3W0UAl0cxJPWX4pVGps6fhU6NR1Y46K9UzYUbkIxtto,972
|
|
146
|
-
uncountable/types/api/inputs/set_input_subcategories.py,sha256=8uwzJ4rZ54NYpqGyLZ4x7mzv6DIGCWNXQrtgjd5cOCY,1009
|
|
147
|
-
uncountable/types/api/inputs/set_intermediate_type.py,sha256=sk2l628wx3hQaiHi3VAIQ0ERyaLF4bRScHUX07ExVt8,1114
|
|
148
|
-
uncountable/types/api/material_families/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
149
|
-
uncountable/types/api/material_families/update_entity_material_families.py,sha256=m4xnxC7jT3xwO9aLVt1hIU6nj4tB1wV_kNNmGkTSmRE,1401
|
|
150
|
-
uncountable/types/api/outputs/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
151
|
-
uncountable/types/api/outputs/get_output_data.py,sha256=ZgpylOphvCdYAhMuCSnr-cRJTWvgLA0naDm1KTM34hQ,2245
|
|
152
|
-
uncountable/types/api/outputs/get_output_names.py,sha256=NqTjaiXwwq4P5dtnaGgnmtpZMR0Piv8xUsvjP1M9gK0,1091
|
|
153
|
-
uncountable/types/api/outputs/resolve_output_conditions.py,sha256=M33xy4I1G0gKKU42muHc9NrNYdGyCqBqcYcwY-NOwWk,1804
|
|
154
|
-
uncountable/types/api/permissions/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
155
|
-
uncountable/types/api/permissions/set_core_permissions.py,sha256=7FEVQTZJlAX4eW0mM6OrW7TODp0dsF7ZCmbwXxEV8Vk,2555
|
|
156
|
-
uncountable/types/api/project/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
157
|
-
uncountable/types/api/project/get_projects.py,sha256=HR0_eupxbgIT4eOZC0uT0sCnwvqsT6ZWG6xGlNxrX38,1240
|
|
158
|
-
uncountable/types/api/project/get_projects_data.py,sha256=bjdTtEtVc_bOoxuRoElTOLCs6tGPLM2D5jrjkVppK08,1496
|
|
159
|
-
uncountable/types/api/recipe_links/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
160
|
-
uncountable/types/api/recipe_links/create_recipe_link.py,sha256=jMcUBL9NuoOpuWpiu-qJOSnKeIBLPX9C03WhwlmiZaE,1218
|
|
161
|
-
uncountable/types/api/recipe_links/remove_recipe_link.py,sha256=kKsekhdRV_fRwYeiCYZkUzJdNPPqPDdWI5rkteQkPSU,1204
|
|
162
|
-
uncountable/types/api/recipe_metadata/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
163
|
-
uncountable/types/api/recipe_metadata/get_recipe_metadata_data.py,sha256=e0VcDiD4DYeWM8i88fwbVS-ZCszIFlSbkdIJHimVEA0,1272
|
|
164
|
-
uncountable/types/api/recipes/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
165
|
-
uncountable/types/api/recipes/add_recipe_to_project.py,sha256=S05ltS4gki4i4CiPTVhMKcW1Tv5J3K0lJ3TE5vIF-Vo,872
|
|
166
|
-
uncountable/types/api/recipes/archive_recipes.py,sha256=_49JFzMAzKqWrBSP0cL2BBJvwl1990EwJT_T2jhc9DE,857
|
|
167
|
-
uncountable/types/api/recipes/associate_recipe_as_input.py,sha256=5_sG2y2xg8uBmjqyQsoF3p9e5kvM0NyXRaCsIZpB4eo,1032
|
|
168
|
-
uncountable/types/api/recipes/associate_recipe_as_lot.py,sha256=eF5hN4aJ2h9N91H8BdoADKx5EmkEMHsIdOS7n9DpupQ,960
|
|
169
|
-
uncountable/types/api/recipes/create_recipe.py,sha256=jjpf5ZOsB9i3KNnFDD4ZCOUAv60uVitHpUTq46fgEO8,1425
|
|
170
|
-
uncountable/types/api/recipes/create_recipes.py,sha256=fQwkPhr0kF1ukw54L8ogeTkyj_7yKM7N3fblkWk2DDg,1549
|
|
171
|
-
uncountable/types/api/recipes/disassociate_recipe_as_input.py,sha256=E1wzJIlYqpM0RXsVxhl6AkAloUTSFsyI1tH0Au7GIj8,918
|
|
172
|
-
uncountable/types/api/recipes/edit_recipe_inputs.py,sha256=HDGgKneehsldTK8f5UoHqoKALFK9G8AsT28sCqaaSvY,5518
|
|
173
|
-
uncountable/types/api/recipes/get_curve.py,sha256=jDj8f2sBnfcGFsWcxgdTyaHvxY6-Q1h84l_j8YutXT0,944
|
|
174
|
-
uncountable/types/api/recipes/get_recipe_calculations.py,sha256=Wfx9yZo_wxBep-hESPvzuVf3-w_n8a8h5oqr7rpEqGM,1477
|
|
175
|
-
uncountable/types/api/recipes/get_recipe_links.py,sha256=h-2baQS_K22s-0DkyN6Q6utSpaDb5a-t9YvNcQ_LFa0,990
|
|
176
|
-
uncountable/types/api/recipes/get_recipe_names.py,sha256=ozjgaGFTGdo74BzLSvT6pc6E46dqdJkH68On_dR1fr4,991
|
|
177
|
-
uncountable/types/api/recipes/get_recipe_output_metadata.py,sha256=3bYk_xUeSiZhaLJ-yu-Qu6ARROQtggz71clLqsYzyaM,1469
|
|
178
|
-
uncountable/types/api/recipes/get_recipes_data.py,sha256=4dBULU0H34lHB-ffRIPC3mTrh2IPBGjdwAKxrhnOoSo,5434
|
|
179
|
-
uncountable/types/api/recipes/lock_recipes.py,sha256=KcAmqkS7XoLJ8cA11FDI4-eoDG_CFwNTtNSZo5QnBjU,1349
|
|
180
|
-
uncountable/types/api/recipes/remove_recipe_from_project.py,sha256=kJNzSpSS03Hx7LV0IgEtE1a38gVNDHkq5ENFQXUTkZE,877
|
|
181
|
-
uncountable/types/api/recipes/set_recipe_inputs.py,sha256=LzOVU1tqt3KcomeBX_fRcJSUmhkgQfC2a0E1Ptwq2BU,1431
|
|
182
|
-
uncountable/types/api/recipes/set_recipe_metadata.py,sha256=080f6bZtwvnYQy5u9MwQz9on9UAXc6WptY1PUqz61jU,938
|
|
183
|
-
uncountable/types/api/recipes/set_recipe_output_annotations.py,sha256=CO9DcjZDRFotGdbqcnw0oyZCFp8YvkD56G-PyOqIL8g,2895
|
|
184
|
-
uncountable/types/api/recipes/set_recipe_outputs.py,sha256=8y5DYDYAuSQSoQzAM1ju2I8eIo9OSd7UK19Pq52ftZQ,1727
|
|
185
|
-
uncountable/types/api/recipes/set_recipe_tags.py,sha256=X_3qvHYi2ofKv1U9i_H2TSeedQYooDSDANJaVMmJvn4,2458
|
|
186
|
-
uncountable/types/api/recipes/unarchive_recipes.py,sha256=5b6HM9TotEs_zwAyA_LVyIwWADGhYjERCsFHZ5__HXI,819
|
|
187
|
-
uncountable/types/api/recipes/unlock_recipes.py,sha256=3rllJ9vHZoOB-ZWtQ6AfHyyt4jBkaCwnl40vJdKv2Kk,1108
|
|
188
|
-
uncountable/types/api/triggers/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
|
|
189
|
-
uncountable/types/api/triggers/run_trigger.py,sha256=3_hgUD27DQV80xFVpvxNy2yHF6i4ej7AxVzS_upBLoQ,906
|
|
190
|
-
UncountablePythonSDK-0.0.39.dist-info/METADATA,sha256=wxWWiks9_yZP_NicluXnpRQDfHq84dTaikC51DMQNDY,1577
|
|
191
|
-
UncountablePythonSDK-0.0.39.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
|
192
|
-
UncountablePythonSDK-0.0.39.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
|
|
193
|
-
UncountablePythonSDK-0.0.39.dist-info/RECORD,,
|
{UncountablePythonSDK-0.0.39.dist-info → UncountablePythonSDK-0.0.40.dist-info}/top_level.txt
RENAMED
|
File without changes
|