File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
app/src/organisms/ODD/QuickTransferFlow
shared-data/protocol/types/schemaV8 Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ touchTipDispense = -(destWellHeight - prevTouchTipDispense)
62
62
Due to changes in the Quick Transfer setup flow, there will be changes to QuickTransferWizardState and QuickTransferSummaryState. The changes are as follows:
63
63
the comment ` this has been added ` will be removed before feature freeze.
64
64
65
+ Now using command schema 14
66
+
65
67
``` ts
66
68
export interface QuickTransferWizardState {
67
69
pipette? : PipetteV2Specs
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import { pythonDef } from './pythonDef'
24
24
import type {
25
25
AddressableAreaName ,
26
26
CommandAnnotationV1Mixin ,
27
- CommandV8Mixin ,
27
+ CommandV14Mixin ,
28
28
CreateCommand ,
29
29
CutoutId ,
30
30
DeckConfiguration ,
@@ -242,8 +242,8 @@ export function createQuickTransferFile(
242
242
liquids : { } ,
243
243
}
244
244
245
- const commandv8Mixin : CommandV8Mixin = {
246
- commandSchemaId : 'opentronsCommandSchemaV8 ' ,
245
+ const commandv8Mixin : CommandV14Mixin = {
246
+ commandSchemaId : 'opentronsCommandSchemaV14 ' ,
247
247
commands,
248
248
}
249
249
Original file line number Diff line number Diff line change @@ -47,6 +47,11 @@ export interface CommandV13Mixin {
47
47
commands : CreateCommand [ ]
48
48
}
49
49
50
+ export interface CommandV14Mixin {
51
+ commandSchemaId : 'opentronsCommandSchemaV14'
52
+ commands : CreateCommand [ ]
53
+ }
54
+
50
55
export interface CommandAnnotationsStructure {
51
56
commandAnnotationSchemaId : string
52
57
commandAnnotations : any [ ]
@@ -143,6 +148,7 @@ export type ProtocolFile<
143
148
| CommandV11Mixin
144
149
| CommandV12Mixin
145
150
| CommandV13Mixin
151
+ | CommandV14Mixin
146
152
) &
147
153
CommandAnnotationV1Mixin
148
154
You can’t perform that action at this time.
0 commit comments