UncountablePythonSDK 0.0.126__py3-none-any.whl → 0.0.142.dev0__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.

Files changed (84) hide show
  1. docs/requirements.txt +1 -1
  2. examples/integration-server/jobs/materials_auto/example_cron.py +1 -1
  3. examples/integration-server/jobs/materials_auto/example_instrument.py +68 -38
  4. examples/integration-server/jobs/materials_auto/example_parse.py +140 -0
  5. examples/integration-server/jobs/materials_auto/example_predictions.py +61 -0
  6. examples/integration-server/jobs/materials_auto/example_runsheet_wh.py +57 -16
  7. examples/integration-server/jobs/materials_auto/profile.yaml +18 -0
  8. examples/integration-server/pyproject.toml +4 -4
  9. pkgs/argument_parser/argument_parser.py +20 -1
  10. pkgs/serialization_util/serialization_helpers.py +3 -1
  11. pkgs/type_spec/builder.py +43 -13
  12. pkgs/type_spec/builder_types.py +9 -0
  13. pkgs/type_spec/cross_output_links.py +2 -10
  14. pkgs/type_spec/emit_open_api.py +0 -12
  15. pkgs/type_spec/emit_python.py +72 -11
  16. pkgs/type_spec/emit_typescript.py +2 -2
  17. pkgs/type_spec/emit_typescript_util.py +28 -6
  18. pkgs/type_spec/load_types.py +1 -1
  19. pkgs/type_spec/parts/base.ts.prepart +3 -0
  20. pkgs/type_spec/type_info/emit_type_info.py +27 -3
  21. pkgs/type_spec/value_spec/__main__.py +2 -2
  22. uncountable/core/client.py +10 -3
  23. uncountable/integration/cli.py +89 -2
  24. uncountable/integration/executors/executors.py +1 -2
  25. uncountable/integration/executors/generic_upload_executor.py +1 -1
  26. uncountable/integration/job.py +3 -3
  27. uncountable/integration/queue_runner/command_server/__init__.py +4 -0
  28. uncountable/integration/queue_runner/command_server/command_client.py +63 -0
  29. uncountable/integration/queue_runner/command_server/command_server.py +77 -5
  30. uncountable/integration/queue_runner/command_server/protocol/command_server.proto +33 -0
  31. uncountable/integration/queue_runner/command_server/protocol/command_server_pb2.py +27 -13
  32. uncountable/integration/queue_runner/command_server/protocol/command_server_pb2.pyi +53 -1
  33. uncountable/integration/queue_runner/command_server/protocol/command_server_pb2_grpc.py +135 -0
  34. uncountable/integration/queue_runner/command_server/types.py +44 -1
  35. uncountable/integration/queue_runner/datastore/datastore_sqlite.py +132 -8
  36. uncountable/integration/queue_runner/datastore/interface.py +3 -0
  37. uncountable/integration/queue_runner/datastore/model.py +8 -1
  38. uncountable/integration/queue_runner/job_scheduler.py +78 -3
  39. uncountable/integration/queue_runner/types.py +2 -0
  40. uncountable/integration/queue_runner/worker.py +28 -26
  41. uncountable/integration/scheduler.py +64 -13
  42. uncountable/integration/server.py +36 -6
  43. uncountable/integration/telemetry.py +120 -7
  44. uncountable/integration/webhook_server/entrypoint.py +2 -0
  45. uncountable/types/__init__.py +18 -0
  46. uncountable/types/api/entity/list_aggregate.py +79 -0
  47. uncountable/types/api/entity/list_entities.py +25 -0
  48. uncountable/types/api/entity/set_barcode.py +43 -0
  49. uncountable/types/api/entity/transition_entity_phase.py +2 -1
  50. uncountable/types/api/files/download_file.py +15 -1
  51. uncountable/types/api/integrations/push_notification.py +2 -0
  52. uncountable/types/api/integrations/register_sockets_token.py +41 -0
  53. uncountable/types/api/listing/__init__.py +1 -0
  54. uncountable/types/api/listing/fetch_listing.py +57 -0
  55. uncountable/types/api/notebooks/__init__.py +1 -0
  56. uncountable/types/api/notebooks/add_notebook_content.py +119 -0
  57. uncountable/types/api/outputs/get_output_organization.py +1 -1
  58. uncountable/types/api/recipes/edit_recipe_inputs.py +1 -1
  59. uncountable/types/api/recipes/get_recipes_data.py +29 -0
  60. uncountable/types/api/recipes/lock_recipes.py +2 -1
  61. uncountable/types/api/recipes/set_recipe_total.py +59 -0
  62. uncountable/types/api/recipes/unlock_recipes.py +2 -1
  63. uncountable/types/api/runsheet/export_default_runsheet.py +44 -0
  64. uncountable/types/api/uploader/complete_async_parse.py +4 -0
  65. uncountable/types/async_batch_processor.py +222 -0
  66. uncountable/types/async_batch_t.py +4 -0
  67. uncountable/types/client_base.py +367 -2
  68. uncountable/types/client_config.py +1 -0
  69. uncountable/types/client_config_t.py +10 -0
  70. uncountable/types/entity_t.py +3 -1
  71. uncountable/types/integration_server_t.py +2 -0
  72. uncountable/types/listing.py +46 -0
  73. uncountable/types/listing_t.py +533 -0
  74. uncountable/types/notices.py +8 -0
  75. uncountable/types/notices_t.py +37 -0
  76. uncountable/types/queued_job.py +1 -0
  77. uncountable/types/queued_job_t.py +9 -0
  78. uncountable/types/sockets.py +9 -0
  79. uncountable/types/sockets_t.py +99 -0
  80. uncountable/types/uploader_t.py +3 -2
  81. {uncountablepythonsdk-0.0.126.dist-info → uncountablepythonsdk-0.0.142.dev0.dist-info}/METADATA +4 -2
  82. {uncountablepythonsdk-0.0.126.dist-info → uncountablepythonsdk-0.0.142.dev0.dist-info}/RECORD +84 -68
  83. {uncountablepythonsdk-0.0.126.dist-info → uncountablepythonsdk-0.0.142.dev0.dist-info}/WHEEL +0 -0
  84. {uncountablepythonsdk-0.0.126.dist-info → uncountablepythonsdk-0.0.142.dev0.dist-info}/top_level.txt +0 -0
@@ -13,4 +13,5 @@ from .queued_job_t import QueuedJobPayload as QueuedJobPayload
13
13
  from .queued_job_t import QueuedJobResult as QueuedJobResult
14
14
  from .queued_job_t import QueuedJobMetadata as QueuedJobMetadata
15
15
  from .queued_job_t import QueuedJob as QueuedJob
16
+ from .queued_job_t import JobStatus as JobStatus
16
17
  # DO NOT MODIFY -- This file is generated by type_spec
@@ -20,6 +20,7 @@ __all__: list[str] = [
20
20
  "InvocationContextManual",
21
21
  "InvocationContextType",
22
22
  "InvocationContextWebhook",
23
+ "JobStatus",
23
24
  "QueuedJob",
24
25
  "QueuedJobMetadata",
25
26
  "QueuedJobPayload",
@@ -119,6 +120,7 @@ class QueuedJobMetadata:
119
120
  job_ref_name: str
120
121
  num_attempts: int
121
122
  submitted_at: datetime.datetime
123
+ status: JobStatus | None = None
122
124
 
123
125
 
124
126
  # DO NOT MODIFY -- This file is generated by type_spec
@@ -128,4 +130,11 @@ class QueuedJobMetadata:
128
130
  @dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
129
131
  class QueuedJob(QueuedJobMetadata):
130
132
  payload: QueuedJobPayload
133
+
134
+
135
+ # DO NOT MODIFY -- This file is generated by type_spec
136
+ class JobStatus(StrEnum):
137
+ QUEUED = "queued"
138
+ FAILED = "failed"
139
+ SUCCESS = "success"
131
140
  # DO NOT MODIFY -- This file is generated by type_spec
@@ -8,4 +8,13 @@ from .sockets_t import SocketRequestType as SocketRequestType
8
8
  from .sockets_t import SocketRequestIntegrationSession as SocketRequestIntegrationSession
9
9
  from .sockets_t import SocketTokenRequest as SocketTokenRequest
10
10
  from .sockets_t import SocketTokenResponse as SocketTokenResponse
11
+ from .sockets_t import SocketEventType as SocketEventType
12
+ from .sockets_t import BaseSocketEventData as BaseSocketEventData
13
+ from .sockets_t import UsersInRoomUpdatedEventData as UsersInRoomUpdatedEventData
14
+ from .sockets_t import SocketEventData as SocketEventData
15
+ from .sockets_t import SocketResponse as SocketResponse
16
+ from .sockets_t import SocketClientMessageType as SocketClientMessageType
17
+ from .sockets_t import JoinRoomWithTokenSocketClientMessage as JoinRoomWithTokenSocketClientMessage
18
+ from .sockets_t import SendInstrumentReadingClientMessage as SendInstrumentReadingClientMessage
19
+ from .sockets_t import SocketClientMessage as SocketClientMessage
11
20
  # DO NOT MODIFY -- This file is generated by type_spec
@@ -10,15 +10,25 @@ from enum import StrEnum
10
10
  import dataclasses
11
11
  from pkgs.serialization import serial_class
12
12
  from pkgs.serialization import serial_union_annotation
13
+ from pkgs.serialization import serial_alias_annotation
13
14
  from . import base_t
14
15
  from . import integration_session_t
15
16
 
16
17
  __all__: list[str] = [
18
+ "BaseSocketEventData",
19
+ "JoinRoomWithTokenSocketClientMessage",
20
+ "SendInstrumentReadingClientMessage",
21
+ "SocketClientMessage",
22
+ "SocketClientMessageType",
23
+ "SocketEventData",
24
+ "SocketEventType",
17
25
  "SocketRequestBase",
18
26
  "SocketRequestIntegrationSession",
19
27
  "SocketRequestType",
28
+ "SocketResponse",
20
29
  "SocketTokenRequest",
21
30
  "SocketTokenResponse",
31
+ "UsersInRoomUpdatedEventData",
22
32
  ]
23
33
 
24
34
 
@@ -67,4 +77,93 @@ SocketTokenRequest = typing.Annotated[
67
77
  @dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
68
78
  class SocketTokenResponse:
69
79
  token: str
80
+ room_key: str
81
+
82
+
83
+ # DO NOT MODIFY -- This file is generated by type_spec
84
+ class SocketEventType(StrEnum):
85
+ USERS_IN_ROOM_UPDATED = "users_in_room_updated"
86
+
87
+
88
+ # DO NOT MODIFY -- This file is generated by type_spec
89
+ @serial_class(
90
+ named_type_path="sdk.sockets.BaseSocketEventData",
91
+ )
92
+ @dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
93
+ class BaseSocketEventData:
94
+ pass
95
+
96
+
97
+ # DO NOT MODIFY -- This file is generated by type_spec
98
+ @serial_class(
99
+ named_type_path="sdk.sockets.UsersInRoomUpdatedEventData",
100
+ parse_require={"type"},
101
+ )
102
+ @dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
103
+ class UsersInRoomUpdatedEventData(BaseSocketEventData):
104
+ type: typing.Literal[SocketEventType.USERS_IN_ROOM_UPDATED] = SocketEventType.USERS_IN_ROOM_UPDATED
105
+ user_ids: list[base_t.ObjectId]
106
+ number_of_connections: int
107
+
108
+
109
+ # DO NOT MODIFY -- This file is generated by type_spec
110
+ SocketEventData = typing.Annotated[
111
+ typing.Union[UsersInRoomUpdatedEventData],
112
+ serial_alias_annotation(
113
+ named_type_path="sdk.sockets.SocketEventData",
114
+ ),
115
+ ]
116
+
117
+
118
+ # DO NOT MODIFY -- This file is generated by type_spec
119
+ @serial_class(
120
+ named_type_path="sdk.sockets.SocketResponse",
121
+ )
122
+ @dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
123
+ class SocketResponse:
124
+ data: SocketEventData
125
+
126
+
127
+ # DO NOT MODIFY -- This file is generated by type_spec
128
+ class SocketClientMessageType(StrEnum):
129
+ JOIN_ROOM_WITH_TOKEN = "join_room_with_token"
130
+ SEND_INSTRUMENT_READING = "send_instrument_reading"
131
+
132
+
133
+ # DO NOT MODIFY -- This file is generated by type_spec
134
+ @serial_class(
135
+ named_type_path="sdk.sockets.JoinRoomWithTokenSocketClientMessage",
136
+ parse_require={"type"},
137
+ )
138
+ @dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
139
+ class JoinRoomWithTokenSocketClientMessage:
140
+ type: typing.Literal[SocketClientMessageType.JOIN_ROOM_WITH_TOKEN] = SocketClientMessageType.JOIN_ROOM_WITH_TOKEN
141
+ token: str
142
+
143
+
144
+ # DO NOT MODIFY -- This file is generated by type_spec
145
+ @serial_class(
146
+ named_type_path="sdk.sockets.SendInstrumentReadingClientMessage",
147
+ to_string_values={"value"},
148
+ parse_require={"type"},
149
+ )
150
+ @dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
151
+ class SendInstrumentReadingClientMessage:
152
+ type: typing.Literal[SocketClientMessageType.SEND_INSTRUMENT_READING] = SocketClientMessageType.SEND_INSTRUMENT_READING
153
+ room_key: str
154
+ value: Decimal
155
+
156
+
157
+ # DO NOT MODIFY -- This file is generated by type_spec
158
+ SocketClientMessage = typing.Annotated[
159
+ JoinRoomWithTokenSocketClientMessage | SendInstrumentReadingClientMessage,
160
+ serial_union_annotation(
161
+ named_type_path="sdk.sockets.SocketClientMessage",
162
+ discriminator="type",
163
+ discriminator_map={
164
+ "join_room_with_token": JoinRoomWithTokenSocketClientMessage,
165
+ "send_instrument_reading": SendInstrumentReadingClientMessage,
166
+ },
167
+ ),
168
+ ]
70
169
  # DO NOT MODIFY -- This file is generated by type_spec
@@ -162,13 +162,14 @@ class TextChannelData(BaseData):
162
162
 
163
163
  # DO NOT MODIFY -- This file is generated by type_spec
164
164
  Channel = typing.Annotated[
165
- TextChannelData | TimestampChannelData,
165
+ TextChannelData | TimestampChannelData | NumericChannelData,
166
166
  serial_union_annotation(
167
167
  named_type_path="sdk.uploader.Channel",
168
168
  discriminator="type",
169
169
  discriminator_map={
170
170
  "text_channel": TextChannelData,
171
171
  "timestamp_channel": TimestampChannelData,
172
+ "numeric_channel": NumericChannelData,
172
173
  },
173
174
  ),
174
175
  ]
@@ -216,6 +217,6 @@ StructureElement = typing.Annotated[
216
217
  )
217
218
  @dataclasses.dataclass(slots=base_t.ENABLE_SLOTS, kw_only=True) # type: ignore[literal-required]
218
219
  class ParsedFileData:
219
- file_id: base_t.ObjectId
220
+ file_name: str
220
221
  file_structures: list[StructureElement]
221
222
  # 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.126
3
+ Version: 0.0.142.dev0
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
@@ -41,12 +41,14 @@ Requires-Dist: azure-storage-blob==12.*
41
41
  Requires-Dist: boto3-stubs[essential,ses]==1.*
42
42
  Requires-Dist: msgspec==0.19.*
43
43
  Requires-Dist: tabulate==0.9.0
44
+ Requires-Dist: types-psutil~=5.9.5
45
+ Requires-Dist: psutil>=5.9.0
44
46
  Provides-Extra: test
45
47
  Requires-Dist: mypy==1.*; extra == "test"
46
48
  Requires-Dist: ruff==0.*; extra == "test"
47
49
  Requires-Dist: pytest==8.*; extra == "test"
48
50
  Requires-Dist: coverage[toml]==7.*; extra == "test"
49
- Requires-Dist: pytest-cov==6.*; extra == "test"
51
+ Requires-Dist: pytest-cov==7.*; extra == "test"
50
52
  Requires-Dist: pytest-xdist==3.*; extra == "test"
51
53
 
52
54
  # Uncountable Python SDK
@@ -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=AAVxGQUFUCjyRe2gQSCD8Nezn42K_TVeEfrpIKJwmD0,171
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,20 +27,22 @@ 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=YqGTmx19bOOTF28BXfazmoRaD41wgGPpoVpV2whhfpA,9149
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
- examples/integration-server/jobs/materials_auto/example_cron.py,sha256=spUMiiTEFaepbVXecjD_4aEEfqEtZGGZuWTKs9J6Xcw,736
32
+ examples/integration-server/jobs/materials_auto/example_cron.py,sha256=y1nAtGwbPJfIrfQsrHVmJLAHmQtCEHIy1g-0PjeXx04,735
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=czJF3qBFay1S8fuESOvmkvBv1wCtZGAlHjwvCyYr-Mw,2336
35
- examples/integration-server/jobs/materials_auto/example_runsheet_wh.py,sha256=_wILTnbzzLf9zrcQb_KQKytxxcya1ej6MqQnoUSS4fA,1180
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=xEuXRbXg4rt7Ob7k19cNOXpG61p784btbsHBR4rQfYI,2641
36
38
  examples/integration-server/jobs/materials_auto/example_wh.py,sha256=PN-skP27yJwDZboWk5g5EZEc3AKfVayQLfnopjsDKJc,659
37
- examples/integration-server/jobs/materials_auto/profile.yaml,sha256=btUdn8hStM6Zp4zr0kBI2lL461MqDdzfSuF4LvuSQ8k,1926
39
+ examples/integration-server/jobs/materials_auto/profile.yaml,sha256=ywDrDRAyqiUdj_HvosNP5bXBL8mCWsvdJ1eYQd-mGYo,2369
38
40
  pkgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
41
  pkgs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
42
  pkgs/argument_parser/__init__.py,sha256=EG3pwLEHTp-Qltd3lRnO4K22RiVrasePzKPDOfTPxFY,924
41
43
  pkgs/argument_parser/_is_enum.py,sha256=Gw6jJa8nBwYGqXwwCZbSnWL8Rvr5alkg5lSVAqXtOZM,257
42
44
  pkgs/argument_parser/_is_namedtuple.py,sha256=InCP2orqKbUYc4JsmE7ccri2EQPvLZeRijYPGqVSeXY,323
43
- pkgs/argument_parser/argument_parser.py,sha256=AjmLCNHcGMyXLojSpuKSYvIYE3u8tbg8rjv-yrhosQs,21077
45
+ pkgs/argument_parser/argument_parser.py,sha256=0ykZ4cCLMyTk_8lxDUd_m92eYL8JmjDQaVB8rh9N_ZQ,21628
44
46
  pkgs/argument_parser/case_convert.py,sha256=NuJLJUJRbyVb6_Slen4uqaStEHbcOS1d-hBBfDrrw-c,605
45
47
  pkgs/filesystem_utils/__init__.py,sha256=2a0d2rEPlEEYwhm3Wckny4VCp4ZS7JtYSXmwdwNCRjo,1332
46
48
  pkgs/filesystem_utils/_blob_session.py,sha256=4GicmwgGHVcqO8pOTu-EJakKMb1-IsxT9QnVi2D0oKU,5143
@@ -63,21 +65,22 @@ pkgs/serialization_util/__init__.py,sha256=YykkhqGNKiLCo-D5vSTq6WiPNfCyPXyr-mQO5
63
65
  pkgs/serialization_util/_get_type_for_serialization.py,sha256=dW5_W9MFd6wgWfW5qlWork-GBb-QFLtiOZkjk2Zqn2M,1177
64
66
  pkgs/serialization_util/convert_to_snakecase.py,sha256=H2BAo5ZdcCDN77RpLb-uP0s7-FQ5Ukwnsd3VYc1vD0M,583
65
67
  pkgs/serialization_util/dataclasses.py,sha256=uhNGXQPQLZblDFQuuwkAGmKOPiRyfDzCdg72CVtYJGA,390
66
- pkgs/serialization_util/serialization_helpers.py,sha256=5fxvMZXdfmXLDzeLC1FkjytHh1YfZWbXwzZcY_4eFPs,6578
68
+ pkgs/serialization_util/serialization_helpers.py,sha256=Rs-kE0PWFY-f64hKo_3LJtYwE-CHiLfJdqFv7bcRUDQ,6663
67
69
  pkgs/strenum_compat/__init__.py,sha256=wXRFeNvBm8RU6dy1PFJ5sRLgUIEeH_DVR95Sv5qpGbk,59
68
70
  pkgs/strenum_compat/strenum_compat.py,sha256=uOUAgpYTjHs1MX8dG81jRlyTkt3KNbkV_25zp7xTX2s,36
69
71
  pkgs/type_spec/__init__.py,sha256=h5DmJTca4QVV10sZR1x0-MlkZfuGYDfapR3zHvXfzto,19
70
72
  pkgs/type_spec/__main__.py,sha256=5bJaX9Y_-FavP0qwzhk-z-V97UY7uaezJTa1zhO_HHQ,1048
71
- pkgs/type_spec/builder.py,sha256=fVFRSJwZDJz33CtD8lC9O5L53gtvcxdx4aNjH4z2j-k,54581
73
+ pkgs/type_spec/builder.py,sha256=a1XpzQ-QRrMYSk3Fx0JzPjomL5h2n3WlCsUOHiG3SW4,55956
74
+ pkgs/type_spec/builder_types.py,sha256=EFXvwd3DhuFcqMtG12U9RHNYXHxi_g6kY5AVPBo3fCg,253
72
75
  pkgs/type_spec/config.py,sha256=m0Rky7Rg2jMglDPQChF30p5h5P86Ap1GObwzLzmypNE,5829
73
- pkgs/type_spec/cross_output_links.py,sha256=ttFNfuQmR3sNnPSeUER5IPgLiYc-FB5gjlf7RyFYMpc,3293
76
+ pkgs/type_spec/cross_output_links.py,sha256=763hGehl2aRXzp6GZ943Hu7zRGzv3BE4n8RGI9cl-pA,3071
74
77
  pkgs/type_spec/emit_io_ts.py,sha256=CUvBs0boB_X-Kndh66yYcqFfq3oC_LGs8YffLkJ0ZXA,5707
75
- pkgs/type_spec/emit_open_api.py,sha256=pvb41mJhHPATOJ6473q2-WGExyz7w-Q_msEiJlDA6TQ,28453
78
+ pkgs/type_spec/emit_open_api.py,sha256=n3VNr796xKpmwQWtVXyGDxBQYpJ8X7nqKn5H-ESWV9M,27967
76
79
  pkgs/type_spec/emit_open_api_util.py,sha256=bTmRvrGP82-eB75hwf9ySI7pDEC87FNQTF18VKEWSXY,2367
77
- pkgs/type_spec/emit_python.py,sha256=aURsc-wWdamVDCrIWxA7s8_MLAMjLdXZor6ykkibzXY,52707
78
- pkgs/type_spec/emit_typescript.py,sha256=FINir79bz4tJYgJuUylNJFvqChzaFlHNCfZ5D7A6B1I,11447
79
- pkgs/type_spec/emit_typescript_util.py,sha256=ChP4oF2ZJoL0qErGCL0nscj0w_yH6TBgE92MtQS8nPI,11638
80
- pkgs/type_spec/load_types.py,sha256=JL7tX2H_cy3p5HjGuvNFJlY4pDSbDVnYFsh9mK16-ic,4302
80
+ pkgs/type_spec/emit_python.py,sha256=2leQIqvwsfrn9KivqDZOB4LqDIyYvkj4LPTTNWxWutc,55236
81
+ pkgs/type_spec/emit_typescript.py,sha256=v0af0jF4YSGnFteWCNoKU0FjC_iJsWYAM32CCg0TnY8,11483
82
+ pkgs/type_spec/emit_typescript_util.py,sha256=uTKdhFVvwrIehtsXhUiSxPdF0-WWmdQRo9E3X4gwtYA,12642
83
+ pkgs/type_spec/load_types.py,sha256=GsZSWJGBRr5GdC0aYXHz6qWjFEc7A7yjLW-Hugscl5o,4297
81
84
  pkgs/type_spec/non_discriminated_union_exceptions.py,sha256=JB4WNDJWc3e9WMOabX4aTd0-6K7n1hctIW2lGf1bYts,612
82
85
  pkgs/type_spec/open_api_util.py,sha256=r4rryE95valu4kmHaMAbXQ5PMwbUnnwYv4Gh6_CwiSU,7966
83
86
  pkgs/type_spec/test.py,sha256=4ueujBq-pEgnX3Z69HyPmD-bullFXmpixcpVzfOkhP4,489
@@ -86,13 +89,13 @@ pkgs/type_spec/actions_registry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
86
89
  pkgs/type_spec/actions_registry/__main__.py,sha256=SRw6kIhHTW7W2wGijYq66JARzoc4KpPmbLqwvnETyTE,4277
87
90
  pkgs/type_spec/actions_registry/emit_typescript.py,sha256=W1lI36ITdJ7MBf37wlTB7H3X9Ljt217vIGMv4e3fxfY,5986
88
91
  pkgs/type_spec/parts/base.py.prepart,sha256=Xy8my5ol_Iu0hpQpvgsmqGLkGcMsLSg-cgjm4Yp-QI4,2369
89
- pkgs/type_spec/parts/base.ts.prepart,sha256=42-1_N_K04t4c6pE62V4wBw3bR5bgPxhmXUk__A7gAs,1002
92
+ pkgs/type_spec/parts/base.ts.prepart,sha256=4NdHyGuaxnPqaVu8e9RBwWm0rD0e1CUjaaFwWXUgVQ8,1116
90
93
  pkgs/type_spec/type_info/__main__.py,sha256=TLNvCHGcmaj_8Sj5bAQNpuNaaw2dpDzoFDWZds0V4Qo,1002
91
- pkgs/type_spec/type_info/emit_type_info.py,sha256=wuhdAJh7Nrdj1tFeiaavpwCdhlig5qZE1JuE8BMLYdE,15655
94
+ pkgs/type_spec/type_info/emit_type_info.py,sha256=6uwoWGI7KiM3n4STwUGH17gXRF0WfzjRNPFqFgH2A4o,16576
92
95
  pkgs/type_spec/ui_entry_actions/__init__.py,sha256=WiHE_BexOEZWbkkbD7EnFau1aMLNmfgQywG9PTQNCkw,135
93
96
  pkgs/type_spec/ui_entry_actions/generate_ui_entry_actions.py,sha256=65qUEp9zVcAsHEe3QjOTlPfLf45kH980fOXZXKNmOC8,9503
94
97
  pkgs/type_spec/value_spec/__init__.py,sha256=Z-grlcZtxAfEXhPHsK0nD7PFLGsv4eqvunaPN7_TA84,83
95
- pkgs/type_spec/value_spec/__main__.py,sha256=oM5lcV6Hv_03okjtfWn2fzSHsarFVa9ArU_g02XnQJw,8879
98
+ pkgs/type_spec/value_spec/__main__.py,sha256=5AYiYY4Zg2h6nO5L0mfM59wVAVv58du84a9L2jRzp5A,8899
96
99
  pkgs/type_spec/value_spec/convert_type.py,sha256=OvP7dwUMHXNHVXWYT4jkaYJ96S3a2SnFuC_iMdYVB7s,2927
97
100
  pkgs/type_spec/value_spec/emit_python.py,sha256=OmSvhR5RO_h2wJOVtulkv_Jr0OUJtZ28TfjLuYl2VY8,7413
98
101
  pkgs/type_spec/value_spec/types.py,sha256=Yc3LaKHN1G6wbgrBv0dpu5vijUXtS2GcDTusYPnDvK0,454
@@ -100,55 +103,55 @@ uncountable/__init__.py,sha256=8l8XWNCKsu7TG94c-xa2KHpDegvxDC2FyQISdWC763Y,89
100
103
  uncountable/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
104
  uncountable/core/__init__.py,sha256=RFv0kO6rKFf1PtBPu83hCGmxqkJamRtsgQ9_-ztw7tA,341
102
105
  uncountable/core/async_batch.py,sha256=9pYGFzVCQXt8059qFHgutweGIFPquJ5Xfq6NT5P-1K0,1206
103
- uncountable/core/client.py,sha256=nzUkHIVbYQmMUEBJhQdLzRC70eeYOACEbKSRY4w0Jlw,13367
106
+ uncountable/core/client.py,sha256=R0GLrFW8zR6_VONReCZOMawxBuq28omfz6Ervu0BSiU,13628
104
107
  uncountable/core/environment.py,sha256=4gdJB0ZhRxKlqSKLaE4vUvEUGZ5fy8IAwXcGDRdYt7E,1037
105
108
  uncountable/core/file_upload.py,sha256=bgvXk9vfF5qlhy2NAUcEEG7Q7i-c1wr2HrpaWD7HldU,4516
106
109
  uncountable/core/types.py,sha256=s2CjqYJpsmbC7xMwxxT7kJ_V9bwokrjjWVVjpMcQpKI,333
107
110
  uncountable/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
- uncountable/integration/cli.py,sha256=eshJ0lv4u00UOFrlkCwamE8NaxX1qN2q79wCJcsFrJs,3580
111
+ uncountable/integration/cli.py,sha256=7BMXeRadCK6rSxWl9LNWkBX9AgqxM9cQvZWjd9RRVL0,6649
109
112
  uncountable/integration/construct_client.py,sha256=I53mGcdS88hba3HFwgXmWQaTd1d5u0jWNSwyc_vlVsQ,1937
110
113
  uncountable/integration/cron.py,sha256=6eH-kIs3sdYPCyb62_L2M7U_uQTdMTdwY5hreEJb0hw,887
111
114
  uncountable/integration/entrypoint.py,sha256=BHOYPQgKvZE6HG8Rv15MkdYl8lRkvfDgv1OdLo0oQ9Q,433
112
- uncountable/integration/job.py,sha256=HFYA3YxqwyCvQLqXpMnKxp2IJUjFgjMsWVz_DTb_5eo,8229
115
+ uncountable/integration/job.py,sha256=brXg6cod4eKNfgPB1J6a0hnrWOrJxRRF571shvxHBw8,8237
113
116
  uncountable/integration/scan_profiles.py,sha256=RHBmPc5E10YZzf4cmglwrn2yAy0jHBhQ-P_GlAk2TeU,2919
114
- uncountable/integration/scheduler.py,sha256=vJQGpuMgryFp5aCQEg5BIvywnu4t3SSFcGoLfY10LKg,6610
115
- uncountable/integration/server.py,sha256=lL9zmzqkQRf7V1fBT20SvIy-7ryz5hFf7DF4QX4pj1E,4699
116
- uncountable/integration/telemetry.py,sha256=5nA_DwqLOBxDdV4cl8Ybo6I6GiJDTdqETlP5Y81SCWg,7633
117
+ uncountable/integration/scheduler.py,sha256=4fLxzSwmuZ0FafM3HmiThFFxfZKG9WlcQCG4fT6yyXM,8470
118
+ uncountable/integration/server.py,sha256=fU7d26546WA-IRwL8wqWM62ogx28YvTmNd9kQ7c56WI,5787
119
+ uncountable/integration/telemetry.py,sha256=nIFg8XUa-rxKnguko5e9dsJHpvEsYPw_GqotI3lS_l8,11549
117
120
  uncountable/integration/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
121
  uncountable/integration/db/connect.py,sha256=mE3bdV0huclH2iT_dXCQdRL4LkjIuf_myAR64RTWXEs,498
119
122
  uncountable/integration/db/session.py,sha256=96cGQXpe6IugBTdSsjdP0S5yhJ6toSmbVB6qhc3FJzE,693
120
123
  uncountable/integration/executors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
- uncountable/integration/executors/executors.py,sha256=Kzisp1eKufGCWrHIw4mmAj-l1UQ2oJsJR7I-_mksnVs,5441
122
- uncountable/integration/executors/generic_upload_executor.py,sha256=z0HfvuBR1wUbRpMVxJQ5Jlzbdk8G7YmAGENmze85Tr8,12076
124
+ uncountable/integration/executors/executors.py,sha256=vrwlUTh_gaso2KH3sNoa4MavXFND2ap5hG5FsyURAPM,5427
125
+ uncountable/integration/executors/generic_upload_executor.py,sha256=BdakXkAvNvLcM96fGvN0Jw2jCvGah6Q29vlXcX1nL-A,12094
123
126
  uncountable/integration/executors/script_executor.py,sha256=BBQ9f0l7uH2hgKf60jtm-pONzwk-EeOhM2qBAbv_URo,846
124
127
  uncountable/integration/http_server/__init__.py,sha256=WY2HMcL0UCAGYv8y6Pz-j0azbDGXwubFF21EH_zNPkc,189
125
128
  uncountable/integration/http_server/types.py,sha256=3JJSulRfv784SbXnXo1Pywto7RwGxgS-iJ2-a6TOnDI,1869
126
129
  uncountable/integration/queue_runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
- uncountable/integration/queue_runner/job_scheduler.py,sha256=Roh7-mTj6rwMzFhBXv7hASNS2dMeTcAZEynJGVjkhEs,6080
130
+ uncountable/integration/queue_runner/job_scheduler.py,sha256=fTQVqA0oYF5xqO-tazCaaQYR_AzHticfzc2UEB78Gs0,9182
128
131
  uncountable/integration/queue_runner/queue_runner.py,sha256=N4sUXmlGzVquybiJ7NQZavCJOBGrxBj6k7mb-TITaN0,1139
129
- uncountable/integration/queue_runner/types.py,sha256=8qTq29BTSa5rmW6CBlBntP0pNIiDcwu1wHa78pjroS0,219
130
- uncountable/integration/queue_runner/worker.py,sha256=WnFeDQN53QRhiF255ThIT2EeHdPw3QZ503_wPeWRqNE,4493
131
- uncountable/integration/queue_runner/command_server/__init__.py,sha256=gQPVILGpWzCr2i5GJyoqna7AOSFvtn4tav69gB78mTQ,571
132
- uncountable/integration/queue_runner/command_server/command_client.py,sha256=Kjov_fQdx-_jJpDeWxQEg8XmlfwWQL94ufIgEjib-nc,2776
133
- uncountable/integration/queue_runner/command_server/command_server.py,sha256=nDTvFN3U5Tm2ZejQhqZpOaaWpVOJiVB26JlNIT2y0fY,3876
132
+ uncountable/integration/queue_runner/types.py,sha256=8HS6KnYMS_vc5XHeMpg0BFAQC-5P3QLzd-aDYDMMt3E,244
133
+ uncountable/integration/queue_runner/worker.py,sha256=E6gb8UcNv-k1H07Ckvcyu0O28OhSOt35cH5BmIxUvRM,4686
134
+ uncountable/integration/queue_runner/command_server/__init__.py,sha256=hMCDLWct8zW4B2a9BaIAsMhtaEgFlxONjeow-6nf6dg,675
135
+ uncountable/integration/queue_runner/command_server/command_client.py,sha256=fNkPFUP-1fUMzMS_BFrDx02FQbg8kjaeyioUOv2U12s,5017
136
+ uncountable/integration/queue_runner/command_server/command_server.py,sha256=In9qKLiDCZNFDlRAf7zCCCH6hv7bUIczj67fzf0qWCI,6692
134
137
  uncountable/integration/queue_runner/command_server/constants.py,sha256=7J9mQIAMOfV50wnwpn7HgrPFEi3Ritj6HwrGYwxGLoU,88
135
- uncountable/integration/queue_runner/command_server/types.py,sha256=PGq6EAGPC_nppXQKp9alAjuBQx1h87BefiMa0XU--PY,975
138
+ uncountable/integration/queue_runner/command_server/types.py,sha256=ZNqJE6b6rfMZGdcPS-7umB_8x2a7dzTfRBsdGoCzDjY,2077
136
139
  uncountable/integration/queue_runner/command_server/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
- uncountable/integration/queue_runner/command_server/protocol/command_server.proto,sha256=V-ztuvK-K3tFdN4F3UblSZ5JETNKYDHGSF_1WYIDo4w,873
138
- uncountable/integration/queue_runner/command_server/protocol/command_server_pb2.py,sha256=3eXIJCQC0swHgEIx_aTpGnPE5s8MvYkyWNf6SZ2uDQQ,3307
139
- uncountable/integration/queue_runner/command_server/protocol/command_server_pb2.pyi,sha256=lWWZuDGoWwtP-gzhADnJi40_lFbO35fUPqNkoOXVnkA,2954
140
- uncountable/integration/queue_runner/command_server/protocol/command_server_pb2_grpc.py,sha256=I2kU_anlxOqfaiUR9IcMTuQYvCXa8xliY4sbvXgLYAE,7504
140
+ uncountable/integration/queue_runner/command_server/protocol/command_server.proto,sha256=6NoF5C8BagyAWb68rqBvfkzr8ydxswOHD1Z4d2o6UFg,1529
141
+ uncountable/integration/queue_runner/command_server/protocol/command_server_pb2.py,sha256=jTXP3Dez72Ai7Re4atKWh5xb4i6HuOJjvem8SN6y8hI,4968
142
+ uncountable/integration/queue_runner/command_server/protocol/command_server_pb2.pyi,sha256=J5dIC6kwN-cUAuHxllCNKu40Bawfl18koim10p-zU3g,4723
143
+ uncountable/integration/queue_runner/command_server/protocol/command_server_pb2_grpc.py,sha256=MyBR2eu4qP6HZg95BHMM0VgXISEb9Ksr-ARoe2Dxxmg,13835
141
144
  uncountable/integration/queue_runner/datastore/__init__.py,sha256=6BefApqN8D2zlVOH14QAeVzwQ8j5NIb41-njT02Za0k,88
142
- uncountable/integration/queue_runner/datastore/datastore_sqlite.py,sha256=YG3BuivjkAl__ZRwfMnyfx5W_zgQTwSaIPBsl-6s--0,5863
143
- uncountable/integration/queue_runner/datastore/interface.py,sha256=tNlnY00D_OyuNOL3x_FtHXcJZAAON3SeX7fEU5C8z1U,824
144
- uncountable/integration/queue_runner/datastore/model.py,sha256=8-RI5A2yPZVGBLWINVmMd6VOl_oHtqGtnaNXcapAChw,577
145
+ uncountable/integration/queue_runner/datastore/datastore_sqlite.py,sha256=sI7hFLDVX7OWYpsA6DILlMOYX1wO9wxkAzX4nlYIO8Q,10583
146
+ uncountable/integration/queue_runner/datastore/interface.py,sha256=an3lVADY-L21rU7OFE1KmzAs8ILpWzk2SDp8XqBOD4A,926
147
+ uncountable/integration/queue_runner/datastore/model.py,sha256=YPqlULU7FxuwjmhXGuj6P7skqs-JQttY-o0x1bCnBa0,775
145
148
  uncountable/integration/secret_retrieval/__init__.py,sha256=3QXVj35w8rRMxVvmmsViFYDi3lcb3g70incfalOEm6o,87
146
149
  uncountable/integration/secret_retrieval/retrieve_secret.py,sha256=LBEf18KHtXZxg-ZZ80stJ1vW39AWf0CQllP6pNu3Eq8,2994
147
- uncountable/integration/webhook_server/entrypoint.py,sha256=NQawXl_JCRojdVniS5RF7dobQQKW_Wy03bwy-uXknuA,3441
148
- uncountable/types/__init__.py,sha256=vjTtTtv3V-G2CDMOG3nKqDWO58J77CxnTB-9W_-BdmY,10856
150
+ uncountable/integration/webhook_server/entrypoint.py,sha256=RQndrVCKdaVBk-xJ592eGqeN-O0IOM7flXDGoJ2HXsc,3505
151
+ uncountable/types/__init__.py,sha256=nEtF9MUDWkIQBDacRwFzRBoBwpqcXwgg33Qq7To1YPA,11621
149
152
  uncountable/types/async_batch.py,sha256=yCCWrrLQfxXVqZp-KskxLBNkNmuELdz4PJjx8ULppgs,662
150
- uncountable/types/async_batch_processor.py,sha256=hvTGI4NNBlHF1q6ec_DuZhLSvX8F32L9lFztNLNjWHw,23451
151
- uncountable/types/async_batch_t.py,sha256=mAQ2AXao_v76e7hZGzUCoSroq2Kf2FVz6hmmMX0icHo,3836
153
+ uncountable/types/async_batch_processor.py,sha256=40NlQIZv_sJixsvXLEBPvqSlbrfsmitzkzAsqADh4vw,32568
154
+ uncountable/types/async_batch_t.py,sha256=wpkWgXUHJLPfwK87p5X1M83DCJygOCdA09ZFec74SQ0,4047
152
155
  uncountable/types/async_jobs.py,sha256=JI0ScfawaqMRbJ2jbgW3YQLhijPnBeYdMnZJjygSxHg,322
153
156
  uncountable/types/async_jobs_t.py,sha256=u4xd3i512PZ-9592Q2ZgWh_faMiI4UMm0F_gOmZnerI,1389
154
157
  uncountable/types/auth_retrieval.py,sha256=770zjN1K9EF5zs1Xml7x6ke6Hkze7rcMT5FdDVCIl9M,549
@@ -159,15 +162,15 @@ uncountable/types/calculations.py,sha256=fApOFpgBemt_t7IVneVR0VdI3X5EOxiG6Xhzr6R
159
162
  uncountable/types/calculations_t.py,sha256=pl-lhjyDQuj11Sf9g1-0BsSkN7Ez8UxDp8-KMQ_3enM,709
160
163
  uncountable/types/chemical_structure.py,sha256=ujyragaD26-QG5jgKnWhO7TN3N1V9b_04T2WhqNYxxo,281
161
164
  uncountable/types/chemical_structure_t.py,sha256=VFFyits_vx4t5L2euu_qFiSpsGJjURkDPr3ISnr3nPc,855
162
- uncountable/types/client_base.py,sha256=6e1Z82JWbT8D6g9tjnPz6Gjdq8cUmLNjkacztpktJoM,78733
163
- uncountable/types/client_config.py,sha256=qLpHt4O_B098CyN6qQajoxZ2zjZ1DILXLUEGyyGP0TQ,280
164
- uncountable/types/client_config_t.py,sha256=yTFIYAitMrcc4oV9J-HADODS_Hwi45z-piz7rr7QT04,781
165
+ uncountable/types/client_base.py,sha256=NRFnazDWa_FlNiI64FLvrQ8d_3abOazodPFKD22tK7Q,97436
166
+ uncountable/types/client_config.py,sha256=xTQfTRTwnAc8ArvOuQdkKGy1uvGcXgQ_cgqsxhQLFgU,342
167
+ uncountable/types/client_config_t.py,sha256=8JoXNcyYT26uJSs5qP3L6yaPgkn23y-o0NhLFU3ilbc,1089
165
168
  uncountable/types/curves.py,sha256=QyEyC20jsG-LGKVx6miiF-w70vKMwNkILFBDIJ5Ok9g,345
166
169
  uncountable/types/curves_t.py,sha256=DxYepdC3QKKR7mepOOBoyarNcFZQdUa5ZYH-hwCY3BI,1469
167
170
  uncountable/types/data.py,sha256=u2isf4XEug3Eu-xSIoqGaCQmW2dFaKBHCkP_WKYwwBc,500
168
171
  uncountable/types/data_t.py,sha256=vFoypK_WMGfN28r1sSlDYHZNUdBQC0XCN7-_Mlo4FJk,2832
169
172
  uncountable/types/entity.py,sha256=Zclk1LYcRaYrMDhqyCjMSLEg0fE6_q8LHvV22Qvscgs,566
170
- uncountable/types/entity_t.py,sha256=cULJs6qZAWnN4U8pZadcsf9A5KmlLTkIlwW_sQf627I,20742
173
+ uncountable/types/entity_t.py,sha256=9AoTRC53R48dx4AitnHDeGZdc-ISVmsyvNRscFJBleI,20887
171
174
  uncountable/types/experiment_groups.py,sha256=qUpFOx1AKgzaT_4khCOv5Xs6jwiQGbvHH-GUh3v1nv4,288
172
175
  uncountable/types/experiment_groups_t.py,sha256=29Ct-WPejpYMuGfnFfOoosU9iSfjzxpabpBX6oTPFUA,761
173
176
  uncountable/types/exports.py,sha256=VMmxUO2PpV1Y63hZ2AnVor4H-B6aswJ7YpSru_u89lU,334
@@ -187,13 +190,17 @@ uncountable/types/input_attributes_t.py,sha256=8NJQeq_8MkUNn5BlDx34opp3eeZl8Sw1n
187
190
  uncountable/types/inputs.py,sha256=3ghg39_oiLF5HqWF_wNwYv4HMR1lrKLfeRLn5ptIGw4,446
188
191
  uncountable/types/inputs_t.py,sha256=eSVA7LNgLI3ja83GJm4sA9KhPICVV4zj2Dd4OhbuY9g,2158
189
192
  uncountable/types/integration_server.py,sha256=VonA8h8TGnVBiss5W8-K82lA01JQa7TLk0ubFo8iiBQ,364
190
- uncountable/types/integration_server_t.py,sha256=pgtoyuW6QvGRawidJZFB-WnOdwCE4OIoJAvGfussZKU,1304
193
+ uncountable/types/integration_server_t.py,sha256=9nEr5x24bf_g7w3HrAse-o-2SClefNOJdjSFbXiA6iQ,1336
191
194
  uncountable/types/integration_session.py,sha256=MVTtZa04INF4L8PxPjqz3l1Lse6Hze3IlYPs2bRSqE0,548
192
195
  uncountable/types/integration_session_t.py,sha256=HEfmPB6pt9GpgdaGKG0kgsJwq6W0Lid9Jy7Dzghhaic,1920
193
196
  uncountable/types/integrations.py,sha256=0fOhtbLIOl9w1GP9J3PTagRU8mjOKV48JNLLH3SJQP0,472
194
197
  uncountable/types/integrations_t.py,sha256=ihyhuMDKtJarQ19OppS0fYpJUYd8o5-w6YCDE440O-w,1871
195
198
  uncountable/types/job_definition.py,sha256=hYp5jPYLLYm3NKEqzQrQfXL0Ms5KgEQGTON13YWSPYk,1804
196
199
  uncountable/types/job_definition_t.py,sha256=E4IQvcYF3VDHbwRlvopy8y-HNAyEMZpwy7jkmp74fgQ,9563
200
+ uncountable/types/listing.py,sha256=TwF1WjFZK-MxeI90xVcPPC_IJrobyEg5y5DYoLlu8T4,2764
201
+ uncountable/types/listing_t.py,sha256=Gmoq43ncFm5QmMehDphTxEeptKRDl8Y0Un-QNk1vL-4,18352
202
+ uncountable/types/notices.py,sha256=j3BWaogmbLsVSqxdk6GZEnzIj30f0KVdNTP660kMeMk,346
203
+ uncountable/types/notices_t.py,sha256=GibfAH5Ed68PqoNFyjXR9vPgQLVwH1zjaFC8EL_Ysf8,1021
197
204
  uncountable/types/notifications.py,sha256=ZGr1ULMG3cPMED83NbMjrjmgVzCeOTS1Tc-pFTNuY4Y,600
198
205
  uncountable/types/notifications_t.py,sha256=qS2mhCkYHFPe2XtBespABJ3dNvisxrmIw_r8ZlUCh_g,2444
199
206
  uncountable/types/outputs.py,sha256=I6zP2WHXg_jXgMqmuEJuJOlsjKjQGHjfs1JOwW9YxBM,260
@@ -206,8 +213,8 @@ uncountable/types/phases.py,sha256=Capx0Tbx52151tHWw8tdOT_NMKMOyHZhrNuGrhuBzfo,2
206
213
  uncountable/types/phases_t.py,sha256=q6ooPMO60JhzoE_a6MrSmDHYXKyTcRr4TXez3Xu64uE,685
207
214
  uncountable/types/post_base.py,sha256=nHqFw6U6ENxcuj_Y3VG-Sk1NEt4Tud2iBxPhRsJpQKM,258
208
215
  uncountable/types/post_base_t.py,sha256=nZl7XQHc9cSnLgccaBZM93bcnSSjTlo2_TL40n-o7K0,734
209
- uncountable/types/queued_job.py,sha256=mhHR4J1agqepnSV62d6gi10UdVRg6MbqzzO3aft7BxA,886
210
- uncountable/types/queued_job_t.py,sha256=qX9BQx8um9HxOqq3qCa0bquo1tCcuvJ09I6g9yxh84w,4251
216
+ uncountable/types/queued_job.py,sha256=ifVXTwYqb1W_o-_6W52B0uYboGqKEj7s-LnQBUJ7ILg,935
217
+ uncountable/types/queued_job_t.py,sha256=BdYls1sZuRDzT2WvLRY1eZHTQ5s1pXnO7J6CGeVBAq4,4455
211
218
  uncountable/types/recipe_identifiers.py,sha256=nqrubqofaeg_zV6vOrzqbiuX5tDUQYrGyvugpWX38mY,633
212
219
  uncountable/types/recipe_identifiers_t.py,sha256=OpA884KEZEWrymlwEDwIkuv_qrEiNV9kyBuLeBeD0N8,2443
213
220
  uncountable/types/recipe_inputs.py,sha256=dLqKvac-Ff3owutgvBD8Hc5KPoiu-6Zy22WOUJtAuus,330
@@ -228,12 +235,12 @@ uncountable/types/response.py,sha256=SJTwjTxZGItGJJYPZ_T1zTooEbtR5ZA8GT_cf8aXfn8
228
235
  uncountable/types/response_t.py,sha256=EJwr5j9IZrtmyD4k8PxHSmTtHa470XkZCQYIpbpsJx0,728
229
236
  uncountable/types/secret_retrieval.py,sha256=poY_nuZBIjNu64Wa0x5Ytsmh3OdAxps2kzuDgv1sa_8,571
230
237
  uncountable/types/secret_retrieval_t.py,sha256=igWrOW_CwRvAE7BHIHVJojBwgcAG05Pqup8D45Sb0F4,2342
231
- uncountable/types/sockets.py,sha256=avkDlKqvvA9W492N9jrfYbnQlVWHN94hne39RM0cUxM,552
232
- uncountable/types/sockets_t.py,sha256=EC3qRIegdIOcIITC1Y_O79xfo-FSevxsM_IhJ-Up_Bw,2224
238
+ uncountable/types/sockets.py,sha256=OogyQ-pLyhJkV6JrBSLTOz9v6cDViYY5QM1ScSXPU3U,1208
239
+ uncountable/types/sockets_t.py,sha256=s--y5nbN4uHA2HVKW6rOz3HwIMk3MT2VKGXCA7reXb4,5608
233
240
  uncountable/types/units.py,sha256=yxuddayiE8cnzrjQiIsURisWc-Vm1F37uyS3fjM--Ao,254
234
241
  uncountable/types/units_t.py,sha256=d62vY2ETqIgMHASw_IcREwDDqKAqI-vPnoBOqzMt4-o,704
235
242
  uncountable/types/uploader.py,sha256=odT7wkBfXUf1MoFy6W5JzZ-WY8JX0vO6odGOS_C2Voo,1222
236
- uncountable/types/uploader_t.py,sha256=yEeJFk5AN9WL2IpZs79PbATIcgzlb6wTpd-opjwp8zg,6685
243
+ uncountable/types/uploader_t.py,sha256=msC5P-l0EUHXvG7HjoFsf-sOymvxAj6lJk2BpM5MvZY,6747
237
244
  uncountable/types/users.py,sha256=R-bFIh07mMl6HyxP8hKmlT-QMbBXZPZ7mVuOIeOlCsg,254
238
245
  uncountable/types/users_t.py,sha256=HaaGjdYZFmfiG0Oio4zBusQUQE2PONmPKcYnCGJP3-Q,727
239
246
  uncountable/types/webhook_job.py,sha256=22fT212MjSpKZNzDjpFbAEW2-UBGRsDHf3Z8ChHpS_g,418
@@ -255,20 +262,22 @@ uncountable/types/api/entity/create_or_update_entity.py,sha256=cxjJIcZTKOg8Y5kGz
255
262
  uncountable/types/api/entity/export_entities.py,sha256=KGAkzHXbY28v7vcO_XyHVKQ-RVryI5dlYx4HdlYnBXw,1814
256
263
  uncountable/types/api/entity/get_entities_data.py,sha256=hu0UfkU4PTyv3_CBZ7YmR8L8BKMq8hx6zH43XtUm16E,1616
257
264
  uncountable/types/api/entity/grant_entity_permissions.py,sha256=4CvVIMvpdok8K1Bh6wMlwuUmoeP_-nL9y2GCEM6uAhY,1536
258
- uncountable/types/api/entity/list_entities.py,sha256=LLc_QRH2LI7qPamxwF8DAPJCnfDo1Nw_0VGNDl6CMXI,2139
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
259
267
  uncountable/types/api/entity/lock_entity.py,sha256=nwkjtF89ZWV6_1cLe8R47-G542b8i3FvBIjauOJlObE,1311
260
268
  uncountable/types/api/entity/lookup_entity.py,sha256=NIDdYl0iscueC68tfZ1lKp5vTq2NMDYtQ3cG6o2tBaI,3905
261
269
  uncountable/types/api/entity/resolve_entity_ids.py,sha256=2FyZxTjPHwCzCg92JjH-akcbPu2d9L14Oh6hRVkKDxA,1523
270
+ uncountable/types/api/entity/set_barcode.py,sha256=Mm-pi6214kviAyZsiOecUFmQbbNlIEoWlzqL62GG-g4,1215
262
271
  uncountable/types/api/entity/set_entity_field_values.py,sha256=oiNjAfdMvuFaLbppEaGejzr7Br6XB2D11WaXVCyx8c4,1324
263
272
  uncountable/types/api/entity/set_values.py,sha256=7pG15cAos1gem7-HtEMJ4AXisopXrzWsiuqiqh8AzQc,1249
264
- uncountable/types/api/entity/transition_entity_phase.py,sha256=ZvKZ4VKm3j0g8cOgq4-kc_-MAUCSN6x4tSZz-S7xL8Q,2592
273
+ uncountable/types/api/entity/transition_entity_phase.py,sha256=CESVjxUyUKeHTuz07NdAjCdfqL0MZBPGMrF3vGYMybU,2669
265
274
  uncountable/types/api/entity/unlock_entity.py,sha256=VlgdwaeUUP3MwLW7Z9oHOq315hFa42OD_LyyL4saN_Y,1274
266
275
  uncountable/types/api/equipment/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
267
276
  uncountable/types/api/equipment/associate_equipment_input.py,sha256=K3LBXzmtOLgCUWGh4O2v1inpX-VbVH-ryOwv4rESOus,1298
268
277
  uncountable/types/api/field_options/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
269
278
  uncountable/types/api/field_options/upsert_field_options.py,sha256=yhgbPXd75fTDzXJhZg2fiv3Nq_Ks6dhwDv6Q-6EjmZo,1631
270
279
  uncountable/types/api/files/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
271
- uncountable/types/api/files/download_file.py,sha256=NZ6lZL2BSE9O4tBO-5He4sMUc8PdWd54Whqlo3xEoKc,2414
280
+ uncountable/types/api/files/download_file.py,sha256=I1jUWFm9QzTnIzir9Ev50RYtTFvr9M7Wmsn32nN18RM,3069
272
281
  uncountable/types/api/id_source/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
273
282
  uncountable/types/api/id_source/list_id_source.py,sha256=td3pA624Sv7tSpg5zifhx42AM203-m875i9JXo3P7kk,1542
274
283
  uncountable/types/api/id_source/match_id_source.py,sha256=tEB624tKHBPRmU4QHFzUKzkbw1_YO5_waVKOqJmU8e0,1489
@@ -285,13 +294,18 @@ uncountable/types/api/inputs/set_input_subcategories.py,sha256=w5U6eXes5KquPW1Uc
285
294
  uncountable/types/api/inputs/set_intermediate_type.py,sha256=S1RLI2RtrRze0NdMUfK2nwR4Twn_DnLnWNsg0-ivi_A,1431
286
295
  uncountable/types/api/integrations/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
287
296
  uncountable/types/api/integrations/publish_realtime_data.py,sha256=-5r2U78AwKUCpModcUIchVIZ9b7L-Ln6O6T-9d57M2A,1181
288
- uncountable/types/api/integrations/push_notification.py,sha256=_ycqsGSd7pdt480JWCwMf-SoL_XIwWzEF-lyWoPmqIY,1404
297
+ uncountable/types/api/integrations/push_notification.py,sha256=_QOodUaaW5LqEISt6b8x1jKRhH7T8mVge8NFoscmkNs,1512
298
+ uncountable/types/api/integrations/register_sockets_token.py,sha256=OOtQKY7B3T5tpz2WCtvMm1jOLNM5dXuSqpsY5FJ2IXk,1218
299
+ uncountable/types/api/listing/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
300
+ uncountable/types/api/listing/fetch_listing.py,sha256=JmMnD4BxPiSBwzWgwbl8iAoPOYTWZWLIcqKBfJLW2cI,1684
289
301
  uncountable/types/api/material_families/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
290
302
  uncountable/types/api/material_families/update_entity_material_families.py,sha256=qWJgAKH0MayadXvxckePCdo9yd34QXOmGZ7cKz5VLNo,1761
303
+ uncountable/types/api/notebooks/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
304
+ uncountable/types/api/notebooks/add_notebook_content.py,sha256=ruLhEYs5ScEOG2cIMK44uMbsds3lV-OwVCzs1mfgnVE,3536
291
305
  uncountable/types/api/outputs/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
292
306
  uncountable/types/api/outputs/get_output_data.py,sha256=luGoQZzbZsGIzo2dXMD5f6rDlXEgBjnnUU9n5T-VL9Q,3069
293
307
  uncountable/types/api/outputs/get_output_names.py,sha256=myxLS1YedzWlKs3st64jmM9XMUphrUltxKISBz4pVSo,1539
294
- uncountable/types/api/outputs/get_output_organization.py,sha256=uxfpuyu7wCYSSAt4pn98voyBfmP4sjZjvL0I65eZH_s,6602
308
+ uncountable/types/api/outputs/get_output_organization.py,sha256=-oi9LjPVH_UzloxwFJSAoT8OPZLuqF-KoeuSQEmcn90,6609
295
309
  uncountable/types/api/outputs/resolve_output_conditions.py,sha256=X8qHd_xZUxIlmfPyLyaBbVjdH_dIN4tj7xVuFFvaQsw,2578
296
310
  uncountable/types/api/permissions/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
297
311
  uncountable/types/api/permissions/set_core_permissions.py,sha256=RtI5l9iyR80mkh9PzpCvn02xfCKsuvHYYCXDr48FT_Q,3651
@@ -314,15 +328,15 @@ uncountable/types/api/recipes/create_mix_order.py,sha256=LMLTw5malVnHsegFsKW04SB
314
328
  uncountable/types/api/recipes/create_recipe.py,sha256=ESgjPKKQLPLZUOqn20LpYupxYyKl8g52RE25TC-Gjx4,1594
315
329
  uncountable/types/api/recipes/create_recipes.py,sha256=vSBCmHWdXDGacNXiRgK22G_nei8SHK1kwSJRRBQnaPU,2106
316
330
  uncountable/types/api/recipes/disassociate_recipe_as_input.py,sha256=Lka3041BI6nXYIzKFjvKs_E9XO67ioHuFg8bEB85GCM,1251
317
- uncountable/types/api/recipes/edit_recipe_inputs.py,sha256=pWaCDxpwpwE9aKB6kAw2b_sSgChS5-c5NYdB9ne-FNQ,11391
331
+ uncountable/types/api/recipes/edit_recipe_inputs.py,sha256=RDMSbKSf9BfHjd-bADjb421n82CxRiyzvmZB5kKBNZ0,11398
318
332
  uncountable/types/api/recipes/get_column_calculation_values.py,sha256=2lTqSOJ_0ZKgPLMVXkAIUU_KIvxKEhl10CKxh5NMm30,1854
319
333
  uncountable/types/api/recipes/get_curve.py,sha256=1Zf41GRBArll1fnpap6I5cYlw6SDDC_ks1RnVxFix2I,1207
320
334
  uncountable/types/api/recipes/get_recipe_calculations.py,sha256=fHCQY-y3c640jR8K5b-XLFFx7GAH3kAgmVDX7Qcj7n0,1862
321
335
  uncountable/types/api/recipes/get_recipe_links.py,sha256=j8jBbgBqR2GAdw8vTZwyoXL0NyazTgquoc2l9ojQxMY,1271
322
336
  uncountable/types/api/recipes/get_recipe_names.py,sha256=GOnKuPjGlNy89__Cp6pIudf8Xjv9MxA7DbNJhP-DAao,1457
323
337
  uncountable/types/api/recipes/get_recipe_output_metadata.py,sha256=aTTYgg1uVXyEpz7mbtWMmw9kvoLHFONW3XEd4Kz1Grw,1914
324
- uncountable/types/api/recipes/get_recipes_data.py,sha256=EvByENq-RuUABaiGKOlXbHRK7Cb6X4bpqI9PUVD-gPQ,6770
325
- uncountable/types/api/recipes/lock_recipes.py,sha256=3mEhU2Sn_-vWnqAFqNRDnqE20ucT76PF5Zz6sMb7DNg,1787
338
+ uncountable/types/api/recipes/get_recipes_data.py,sha256=-_m_MEQYNqMuCNQlTWMXNHZgfTTWVMRAkEFiXO4DnQs,7692
339
+ uncountable/types/api/recipes/lock_recipes.py,sha256=8nXh2OViududWO4m0Q3zA-Bzgu5-quQ2-z4-E5FX_dE,1855
326
340
  uncountable/types/api/recipes/remove_recipe_from_project.py,sha256=eVmG8MBUScVtjt2Z3_EIjdzyeT0UMSFvdYunNG4mVNo,1221
327
341
  uncountable/types/api/recipes/set_recipe_inputs.py,sha256=GSuT-Vgrn8-OG_eFuPCElI3mVWs2XaC_RUXasVCmABw,1766
328
342
  uncountable/types/api/recipes/set_recipe_metadata.py,sha256=lrMB_wyOKjTLl9fiKT30M2HBU7lPwjtDsqZY8ODA-oA,1249
@@ -330,18 +344,20 @@ uncountable/types/api/recipes/set_recipe_output_annotations.py,sha256=OEMKfY_CEp
330
344
  uncountable/types/api/recipes/set_recipe_output_file.py,sha256=2q63zD5-JEfWk5AffNHwERjzn8MzfQCtgGTKZQhcwsU,1685
331
345
  uncountable/types/api/recipes/set_recipe_outputs.py,sha256=ENIP8T1rUZpuI4iPrrGpwZInPNdB6m1ZIyEIbyobkj4,2752
332
346
  uncountable/types/api/recipes/set_recipe_tags.py,sha256=C4GzlHVfTDUA2CrgDqfYrDpS9jgOBf9bIgu4iqGvdno,3464
347
+ uncountable/types/api/recipes/set_recipe_total.py,sha256=K1eHfz95txl6EUoDNap3QEsRX-if2Ns5UihzMBawwMM,1859
333
348
  uncountable/types/api/recipes/unarchive_recipes.py,sha256=ke3JPaj6hRdTjP-Qot8Gc-_ptTYqC_1ZF3kKbPJ0H88,1145
334
- uncountable/types/api/recipes/unlock_recipes.py,sha256=bwFFsgeozIMuyR9XmeUK1s3RuH1R8jRsFiF8SUKxBAg,1403
349
+ uncountable/types/api/recipes/unlock_recipes.py,sha256=Qa_qLyp0McWpaIAXIOJxe6L9p5dfdEId_TtgUk8Lnzo,1471
335
350
  uncountable/types/api/runsheet/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
336
351
  uncountable/types/api/runsheet/complete_async_upload.py,sha256=r3zsmD8tcalMfa67MNdF7LE_YJjBsSXK07zZ9fMap0Y,1156
352
+ uncountable/types/api/runsheet/export_default_runsheet.py,sha256=IQrHcWBmMpSj-W8IWojKBvy6gcSWe-hTQMnpKZPYWVQ,1340
337
353
  uncountable/types/api/triggers/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
338
354
  uncountable/types/api/triggers/run_trigger.py,sha256=dgDX_sRWSJ36UuzMZhG25oHV1HIOUKYY2G3fjKugZrw,1204
339
355
  uncountable/types/api/uploader/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
340
- uncountable/types/api/uploader/complete_async_parse.py,sha256=zx2FyihtSXOjPUPQMW9ErjYeORW0naSS_I1BcoYkpNE,1239
356
+ uncountable/types/api/uploader/complete_async_parse.py,sha256=nYYBzjT_j4L7_1Ge-iqgFhI4HYSQ20kO6r8b7rhwZTE,1412
341
357
  uncountable/types/api/uploader/invoke_uploader.py,sha256=Bj7Dq4A90k00suacwk3bLA_dCb2aovS1kAbVam2AQnM,1395
342
358
  uncountable/types/api/user/__init__.py,sha256=gCgbynxG3jA8FQHzercKtrHKHkiIKr8APdZYUniAor8,55
343
359
  uncountable/types/api/user/get_current_user_info.py,sha256=Avqi_RXtRgbefrT_dwJ9MrO6eDNSSa_Nu650FSuESlg,1109
344
- uncountablepythonsdk-0.0.126.dist-info/METADATA,sha256=_cUnINlyNcykuSDvSOi8r6GGdyOzD0rGHuilsJ2aRDQ,2174
345
- uncountablepythonsdk-0.0.126.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
346
- uncountablepythonsdk-0.0.126.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
347
- uncountablepythonsdk-0.0.126.dist-info/RECORD,,
360
+ uncountablepythonsdk-0.0.142.dev0.dist-info/METADATA,sha256=mEn744TeGTL-9wQNY9AyznKXgMvb0BOOd4AS6u6tVuo,2243
361
+ uncountablepythonsdk-0.0.142.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
362
+ uncountablepythonsdk-0.0.142.dev0.dist-info/top_level.txt,sha256=1UVGjAU-6hJY9qw2iJ7nCBeEwZ793AEN5ZfKX9A1uj4,31
363
+ uncountablepythonsdk-0.0.142.dev0.dist-info/RECORD,,