|
@@ -1132,6 +1132,8 @@ export type InstrumentInstanceOrderByInput =
|
|
|
| "id_DESC"
|
|
|
| "identifier_ASC"
|
|
|
| "identifier_DESC"
|
|
|
+ | "interface_ASC"
|
|
|
+ | "interface_DESC"
|
|
|
| "label_ASC"
|
|
|
| "label_DESC"
|
|
|
| "location_ASC"
|
|
@@ -1974,6 +1976,20 @@ export interface InstrumentInstanceWhereInput {
|
|
|
identifier_not_starts_with?: String;
|
|
|
identifier_ends_with?: String;
|
|
|
identifier_not_ends_with?: String;
|
|
|
+ interface?: String;
|
|
|
+ interface_not?: String;
|
|
|
+ interface_in?: String[] | String;
|
|
|
+ interface_not_in?: String[] | String;
|
|
|
+ interface_lt?: String;
|
|
|
+ interface_lte?: String;
|
|
|
+ interface_gt?: String;
|
|
|
+ interface_gte?: String;
|
|
|
+ interface_contains?: String;
|
|
|
+ interface_not_contains?: String;
|
|
|
+ interface_starts_with?: String;
|
|
|
+ interface_not_starts_with?: String;
|
|
|
+ interface_ends_with?: String;
|
|
|
+ interface_not_ends_with?: String;
|
|
|
label?: String;
|
|
|
label_not?: String;
|
|
|
label_in?: String[] | String;
|
|
@@ -2684,7 +2700,7 @@ export interface InstrumentInstanceCreateManyInput {
|
|
|
export interface InstrumentInstanceCreateInput {
|
|
|
instrument: InstrumentCreateOneInput;
|
|
|
identifier: String;
|
|
|
- interface?: InstrumentInstanceCreateinterfaceInput;
|
|
|
+ interface: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -2787,10 +2803,6 @@ export interface InstrumentCreateWithoutCommandsInput {
|
|
|
subsystems?: InstrumentSubsystemCreateManyInput;
|
|
|
}
|
|
|
|
|
|
-export interface InstrumentInstanceCreateinterfaceInput {
|
|
|
- set?: String[] | String;
|
|
|
-}
|
|
|
-
|
|
|
export interface CharacterizationUpdateInput {
|
|
|
name?: String;
|
|
|
projectVersion?: ProjectVersionUpdateOneRequiredInput;
|
|
@@ -3609,7 +3621,7 @@ export interface InstrumentInstanceUpdateWithWhereUniqueNestedInput {
|
|
|
export interface InstrumentInstanceUpdateDataInput {
|
|
|
instrument?: InstrumentUpdateOneRequiredInput;
|
|
|
identifier?: String;
|
|
|
- interface?: InstrumentInstanceUpdateinterfaceInput;
|
|
|
+ interface?: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -4126,10 +4138,6 @@ export interface InstrumentUpsertNestedInput {
|
|
|
create: InstrumentCreateInput;
|
|
|
}
|
|
|
|
|
|
-export interface InstrumentInstanceUpdateinterfaceInput {
|
|
|
- set?: String[] | String;
|
|
|
-}
|
|
|
-
|
|
|
export interface InstrumentInstanceUpsertWithWhereUniqueNestedInput {
|
|
|
where: InstrumentInstanceWhereUniqueInput;
|
|
|
update: InstrumentInstanceUpdateDataInput;
|
|
@@ -4165,6 +4173,20 @@ export interface InstrumentInstanceScalarWhereInput {
|
|
|
identifier_not_starts_with?: String;
|
|
|
identifier_ends_with?: String;
|
|
|
identifier_not_ends_with?: String;
|
|
|
+ interface?: String;
|
|
|
+ interface_not?: String;
|
|
|
+ interface_in?: String[] | String;
|
|
|
+ interface_not_in?: String[] | String;
|
|
|
+ interface_lt?: String;
|
|
|
+ interface_lte?: String;
|
|
|
+ interface_gt?: String;
|
|
|
+ interface_gte?: String;
|
|
|
+ interface_contains?: String;
|
|
|
+ interface_not_contains?: String;
|
|
|
+ interface_starts_with?: String;
|
|
|
+ interface_not_starts_with?: String;
|
|
|
+ interface_ends_with?: String;
|
|
|
+ interface_not_ends_with?: String;
|
|
|
label?: String;
|
|
|
label_not?: String;
|
|
|
label_in?: String[] | String;
|
|
@@ -4211,7 +4233,7 @@ export interface InstrumentInstanceUpdateManyWithWhereNestedInput {
|
|
|
|
|
|
export interface InstrumentInstanceUpdateManyDataInput {
|
|
|
identifier?: String;
|
|
|
- interface?: InstrumentInstanceUpdateinterfaceInput;
|
|
|
+ interface?: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -4418,14 +4440,14 @@ export interface InstrumentCommandUpdateManyMutationInput {
|
|
|
export interface InstrumentInstanceUpdateInput {
|
|
|
instrument?: InstrumentUpdateOneRequiredInput;
|
|
|
identifier?: String;
|
|
|
- interface?: InstrumentInstanceUpdateinterfaceInput;
|
|
|
+ interface?: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
|
|
|
|
export interface InstrumentInstanceUpdateManyMutationInput {
|
|
|
identifier?: String;
|
|
|
- interface?: InstrumentInstanceUpdateinterfaceInput;
|
|
|
+ interface?: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -5572,7 +5594,7 @@ export interface SetupHardwareSubscription
|
|
|
export interface InstrumentInstance {
|
|
|
id: ID_Output;
|
|
|
identifier: String;
|
|
|
- interface: String[];
|
|
|
+ interface: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -5583,7 +5605,7 @@ export interface InstrumentInstancePromise
|
|
|
id: () => Promise<ID_Output>;
|
|
|
instrument: <T = InstrumentPromise>() => T;
|
|
|
identifier: () => Promise<String>;
|
|
|
- interface: () => Promise<String[]>;
|
|
|
+ interface: () => Promise<String>;
|
|
|
label: () => Promise<String>;
|
|
|
location: () => Promise<String>;
|
|
|
}
|
|
@@ -5594,7 +5616,7 @@ export interface InstrumentInstanceSubscription
|
|
|
id: () => Promise<AsyncIterator<ID_Output>>;
|
|
|
instrument: <T = InstrumentSubscription>() => T;
|
|
|
identifier: () => Promise<AsyncIterator<String>>;
|
|
|
- interface: () => Promise<AsyncIterator<String[]>>;
|
|
|
+ interface: () => Promise<AsyncIterator<String>>;
|
|
|
label: () => Promise<AsyncIterator<String>>;
|
|
|
location: () => Promise<AsyncIterator<String>>;
|
|
|
}
|
|
@@ -7405,7 +7427,7 @@ export interface InstrumentInstanceSubscriptionPayloadSubscription
|
|
|
export interface InstrumentInstancePreviousValues {
|
|
|
id: ID_Output;
|
|
|
identifier: String;
|
|
|
- interface: String[];
|
|
|
+ interface: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -7415,7 +7437,7 @@ export interface InstrumentInstancePreviousValuesPromise
|
|
|
Fragmentable {
|
|
|
id: () => Promise<ID_Output>;
|
|
|
identifier: () => Promise<String>;
|
|
|
- interface: () => Promise<String[]>;
|
|
|
+ interface: () => Promise<String>;
|
|
|
label: () => Promise<String>;
|
|
|
location: () => Promise<String>;
|
|
|
}
|
|
@@ -7425,7 +7447,7 @@ export interface InstrumentInstancePreviousValuesSubscription
|
|
|
Fragmentable {
|
|
|
id: () => Promise<AsyncIterator<ID_Output>>;
|
|
|
identifier: () => Promise<AsyncIterator<String>>;
|
|
|
- interface: () => Promise<AsyncIterator<String[]>>;
|
|
|
+ interface: () => Promise<AsyncIterator<String>>;
|
|
|
label: () => Promise<AsyncIterator<String>>;
|
|
|
location: () => Promise<AsyncIterator<String>>;
|
|
|
}
|