|
@@ -1132,8 +1132,6 @@ export type InstrumentInstanceOrderByInput =
|
|
|
| "id_DESC"
|
|
|
| "identifier_ASC"
|
|
|
| "identifier_DESC"
|
|
|
- | "interface_ASC"
|
|
|
- | "interface_DESC"
|
|
|
| "label_ASC"
|
|
|
| "label_DESC"
|
|
|
| "location_ASC"
|
|
@@ -1976,20 +1974,6 @@ 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;
|
|
@@ -2700,7 +2684,6 @@ export interface InstrumentInstanceCreateManyInput {
|
|
|
export interface InstrumentInstanceCreateInput {
|
|
|
instrument: InstrumentCreateOneInput;
|
|
|
identifier: String;
|
|
|
- interface: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -3621,7 +3604,6 @@ export interface InstrumentInstanceUpdateWithWhereUniqueNestedInput {
|
|
|
export interface InstrumentInstanceUpdateDataInput {
|
|
|
instrument?: InstrumentUpdateOneRequiredInput;
|
|
|
identifier?: String;
|
|
|
- interface?: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -4173,20 +4155,6 @@ 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;
|
|
@@ -4233,7 +4201,6 @@ export interface InstrumentInstanceUpdateManyWithWhereNestedInput {
|
|
|
|
|
|
export interface InstrumentInstanceUpdateManyDataInput {
|
|
|
identifier?: String;
|
|
|
- interface?: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -4440,14 +4407,12 @@ export interface InstrumentCommandUpdateManyMutationInput {
|
|
|
export interface InstrumentInstanceUpdateInput {
|
|
|
instrument?: InstrumentUpdateOneRequiredInput;
|
|
|
identifier?: String;
|
|
|
- interface?: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
|
|
|
|
export interface InstrumentInstanceUpdateManyMutationInput {
|
|
|
identifier?: String;
|
|
|
- interface?: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -5594,7 +5559,6 @@ export interface SetupHardwareSubscription
|
|
|
export interface InstrumentInstance {
|
|
|
id: ID_Output;
|
|
|
identifier: String;
|
|
|
- interface: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -5605,7 +5569,6 @@ export interface InstrumentInstancePromise
|
|
|
id: () => Promise<ID_Output>;
|
|
|
instrument: <T = InstrumentPromise>() => T;
|
|
|
identifier: () => Promise<String>;
|
|
|
- interface: () => Promise<String>;
|
|
|
label: () => Promise<String>;
|
|
|
location: () => Promise<String>;
|
|
|
}
|
|
@@ -5616,7 +5579,6 @@ export interface InstrumentInstanceSubscription
|
|
|
id: () => Promise<AsyncIterator<ID_Output>>;
|
|
|
instrument: <T = InstrumentSubscription>() => T;
|
|
|
identifier: () => Promise<AsyncIterator<String>>;
|
|
|
- interface: () => Promise<AsyncIterator<String>>;
|
|
|
label: () => Promise<AsyncIterator<String>>;
|
|
|
location: () => Promise<AsyncIterator<String>>;
|
|
|
}
|
|
@@ -7427,7 +7389,6 @@ export interface InstrumentInstanceSubscriptionPayloadSubscription
|
|
|
export interface InstrumentInstancePreviousValues {
|
|
|
id: ID_Output;
|
|
|
identifier: String;
|
|
|
- interface: String;
|
|
|
label?: String;
|
|
|
location?: String;
|
|
|
}
|
|
@@ -7437,7 +7398,6 @@ export interface InstrumentInstancePreviousValuesPromise
|
|
|
Fragmentable {
|
|
|
id: () => Promise<ID_Output>;
|
|
|
identifier: () => Promise<String>;
|
|
|
- interface: () => Promise<String>;
|
|
|
label: () => Promise<String>;
|
|
|
location: () => Promise<String>;
|
|
|
}
|
|
@@ -7447,7 +7407,6 @@ export interface InstrumentInstancePreviousValuesSubscription
|
|
|
Fragmentable {
|
|
|
id: () => Promise<AsyncIterator<ID_Output>>;
|
|
|
identifier: () => Promise<AsyncIterator<String>>;
|
|
|
- interface: () => Promise<AsyncIterator<String>>;
|
|
|
label: () => Promise<AsyncIterator<String>>;
|
|
|
location: () => Promise<AsyncIterator<String>>;
|
|
|
}
|