42
42
"""
43
43
),
44
44
status_code = 201 ,
45
+ include_in_schema = False , # todo(mm, 2025-01-08): Include for v8.4.0.
45
46
)
46
47
async def post_labware_offset ( # noqa: D103
47
48
store : Annotated [LabwareOffsetStore , fastapi .Depends (get_labware_offset_store )],
@@ -72,6 +73,7 @@ async def post_labware_offset( # noqa: D103
72
73
" Filters are ANDed together."
73
74
" Results are returned in order from oldest to newest."
74
75
),
76
+ include_in_schema = False , # todo(mm, 2025-01-08): Include for v8.4.0.
75
77
)
76
78
async def get_labware_offsets ( # noqa: D103
77
79
store : Annotated [LabwareOffsetStore , fastapi .Depends (get_labware_offset_store )],
@@ -163,6 +165,7 @@ async def get_labware_offsets( # noqa: D103
163
165
path = "/labwareOffsets/{id}" ,
164
166
summary = "Delete a single labware offset" ,
165
167
description = "Delete a single labware offset. The deleted offset is returned." ,
168
+ include_in_schema = False , # todo(mm, 2025-01-08): Include for v8.4.0.
166
169
)
167
170
async def delete_labware_offset ( # noqa: D103
168
171
store : Annotated [LabwareOffsetStore , fastapi .Depends (get_labware_offset_store )],
@@ -185,6 +188,7 @@ async def delete_labware_offset( # noqa: D103
185
188
router .delete ,
186
189
path = "/labwareOffsets" ,
187
190
summary = "Delete all labware offsets" ,
191
+ include_in_schema = False , # todo(mm, 2025-01-08): Include for v8.4.0.
188
192
)
189
193
async def delete_all_labware_offsets ( # noqa: D103
190
194
store : Annotated [LabwareOffsetStore , fastapi .Depends (get_labware_offset_store )]
0 commit comments