index.d.ts 211 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571
  1. // Code generated by Prisma (prisma@1.30.1). DO NOT EDIT.
  2. // Please don't change this file manually but run `prisma generate` to update it.
  3. // For more information, please read the docs: https://www.prisma.io/docs/prisma-client/
  4. import { DocumentNode } from "graphql";
  5. import {
  6. makePrismaClientClass,
  7. BaseClientOptions,
  8. Model
  9. } from "prisma-client-lib";
  10. import { typeDefs } from "./prisma-schema";
  11. export type AtLeastOne<T, U = { [K in keyof T]: Pick<T, K> }> = Partial<T> &
  12. U[keyof U];
  13. export interface Exists {
  14. characterization: (where?: CharacterizationWhereInput) => Promise<boolean>;
  15. comment: (where?: CommentWhereInput) => Promise<boolean>;
  16. dUT: (where?: DUTWhereInput) => Promise<boolean>;
  17. event: (where?: EventWhereInput) => Promise<boolean>;
  18. file: (where?: FileWhereInput) => Promise<boolean>;
  19. instrument: (where?: InstrumentWhereInput) => Promise<boolean>;
  20. instrumentCommand: (where?: InstrumentCommandWhereInput) => Promise<boolean>;
  21. instrumentInstance: (
  22. where?: InstrumentInstanceWhereInput
  23. ) => Promise<boolean>;
  24. instrumentParameter: (
  25. where?: InstrumentParameterWhereInput
  26. ) => Promise<boolean>;
  27. instrumentSubsystem: (
  28. where?: InstrumentSubsystemWhereInput
  29. ) => Promise<boolean>;
  30. measurement: (where?: MeasurementWhereInput) => Promise<boolean>;
  31. measurementRun: (where?: MeasurementRunWhereInput) => Promise<boolean>;
  32. project: (where?: ProjectWhereInput) => Promise<boolean>;
  33. projectVersion: (where?: ProjectVersionWhereInput) => Promise<boolean>;
  34. setup: (where?: SetupWhereInput) => Promise<boolean>;
  35. setupHardware: (where?: SetupHardwareWhereInput) => Promise<boolean>;
  36. setupHardwareInstance: (
  37. where?: SetupHardwareInstanceWhereInput
  38. ) => Promise<boolean>;
  39. user: (where?: UserWhereInput) => Promise<boolean>;
  40. }
  41. export interface Node {}
  42. export type FragmentableArray<T> = Promise<Array<T>> & Fragmentable;
  43. export interface Fragmentable {
  44. $fragment<T>(fragment: string | DocumentNode): Promise<T>;
  45. }
  46. export interface Prisma {
  47. $exists: Exists;
  48. $graphql: <T = any>(
  49. query: string,
  50. variables?: { [key: string]: any }
  51. ) => Promise<T>;
  52. /**
  53. * Queries
  54. */
  55. characterization: (
  56. where: CharacterizationWhereUniqueInput
  57. ) => CharacterizationPromise;
  58. characterizations: (
  59. args?: {
  60. where?: CharacterizationWhereInput;
  61. orderBy?: CharacterizationOrderByInput;
  62. skip?: Int;
  63. after?: String;
  64. before?: String;
  65. first?: Int;
  66. last?: Int;
  67. }
  68. ) => FragmentableArray<Characterization>;
  69. characterizationsConnection: (
  70. args?: {
  71. where?: CharacterizationWhereInput;
  72. orderBy?: CharacterizationOrderByInput;
  73. skip?: Int;
  74. after?: String;
  75. before?: String;
  76. first?: Int;
  77. last?: Int;
  78. }
  79. ) => CharacterizationConnectionPromise;
  80. comment: (where: CommentWhereUniqueInput) => CommentPromise;
  81. comments: (
  82. args?: {
  83. where?: CommentWhereInput;
  84. orderBy?: CommentOrderByInput;
  85. skip?: Int;
  86. after?: String;
  87. before?: String;
  88. first?: Int;
  89. last?: Int;
  90. }
  91. ) => FragmentableArray<Comment>;
  92. commentsConnection: (
  93. args?: {
  94. where?: CommentWhereInput;
  95. orderBy?: CommentOrderByInput;
  96. skip?: Int;
  97. after?: String;
  98. before?: String;
  99. first?: Int;
  100. last?: Int;
  101. }
  102. ) => CommentConnectionPromise;
  103. dUT: (where: DUTWhereUniqueInput) => DUTPromise;
  104. dUTs: (
  105. args?: {
  106. where?: DUTWhereInput;
  107. orderBy?: DUTOrderByInput;
  108. skip?: Int;
  109. after?: String;
  110. before?: String;
  111. first?: Int;
  112. last?: Int;
  113. }
  114. ) => FragmentableArray<DUT>;
  115. dUTsConnection: (
  116. args?: {
  117. where?: DUTWhereInput;
  118. orderBy?: DUTOrderByInput;
  119. skip?: Int;
  120. after?: String;
  121. before?: String;
  122. first?: Int;
  123. last?: Int;
  124. }
  125. ) => DUTConnectionPromise;
  126. event: (where: EventWhereUniqueInput) => EventPromise;
  127. events: (
  128. args?: {
  129. where?: EventWhereInput;
  130. orderBy?: EventOrderByInput;
  131. skip?: Int;
  132. after?: String;
  133. before?: String;
  134. first?: Int;
  135. last?: Int;
  136. }
  137. ) => FragmentableArray<Event>;
  138. eventsConnection: (
  139. args?: {
  140. where?: EventWhereInput;
  141. orderBy?: EventOrderByInput;
  142. skip?: Int;
  143. after?: String;
  144. before?: String;
  145. first?: Int;
  146. last?: Int;
  147. }
  148. ) => EventConnectionPromise;
  149. file: (where: FileWhereUniqueInput) => FilePromise;
  150. files: (
  151. args?: {
  152. where?: FileWhereInput;
  153. orderBy?: FileOrderByInput;
  154. skip?: Int;
  155. after?: String;
  156. before?: String;
  157. first?: Int;
  158. last?: Int;
  159. }
  160. ) => FragmentableArray<File>;
  161. filesConnection: (
  162. args?: {
  163. where?: FileWhereInput;
  164. orderBy?: FileOrderByInput;
  165. skip?: Int;
  166. after?: String;
  167. before?: String;
  168. first?: Int;
  169. last?: Int;
  170. }
  171. ) => FileConnectionPromise;
  172. instrument: (where: InstrumentWhereUniqueInput) => InstrumentPromise;
  173. instruments: (
  174. args?: {
  175. where?: InstrumentWhereInput;
  176. orderBy?: InstrumentOrderByInput;
  177. skip?: Int;
  178. after?: String;
  179. before?: String;
  180. first?: Int;
  181. last?: Int;
  182. }
  183. ) => FragmentableArray<Instrument>;
  184. instrumentsConnection: (
  185. args?: {
  186. where?: InstrumentWhereInput;
  187. orderBy?: InstrumentOrderByInput;
  188. skip?: Int;
  189. after?: String;
  190. before?: String;
  191. first?: Int;
  192. last?: Int;
  193. }
  194. ) => InstrumentConnectionPromise;
  195. instrumentCommand: (
  196. where: InstrumentCommandWhereUniqueInput
  197. ) => InstrumentCommandPromise;
  198. instrumentCommands: (
  199. args?: {
  200. where?: InstrumentCommandWhereInput;
  201. orderBy?: InstrumentCommandOrderByInput;
  202. skip?: Int;
  203. after?: String;
  204. before?: String;
  205. first?: Int;
  206. last?: Int;
  207. }
  208. ) => FragmentableArray<InstrumentCommand>;
  209. instrumentCommandsConnection: (
  210. args?: {
  211. where?: InstrumentCommandWhereInput;
  212. orderBy?: InstrumentCommandOrderByInput;
  213. skip?: Int;
  214. after?: String;
  215. before?: String;
  216. first?: Int;
  217. last?: Int;
  218. }
  219. ) => InstrumentCommandConnectionPromise;
  220. instrumentInstance: (
  221. where: InstrumentInstanceWhereUniqueInput
  222. ) => InstrumentInstancePromise;
  223. instrumentInstances: (
  224. args?: {
  225. where?: InstrumentInstanceWhereInput;
  226. orderBy?: InstrumentInstanceOrderByInput;
  227. skip?: Int;
  228. after?: String;
  229. before?: String;
  230. first?: Int;
  231. last?: Int;
  232. }
  233. ) => FragmentableArray<InstrumentInstance>;
  234. instrumentInstancesConnection: (
  235. args?: {
  236. where?: InstrumentInstanceWhereInput;
  237. orderBy?: InstrumentInstanceOrderByInput;
  238. skip?: Int;
  239. after?: String;
  240. before?: String;
  241. first?: Int;
  242. last?: Int;
  243. }
  244. ) => InstrumentInstanceConnectionPromise;
  245. instrumentParameter: (
  246. where: InstrumentParameterWhereUniqueInput
  247. ) => InstrumentParameterPromise;
  248. instrumentParameters: (
  249. args?: {
  250. where?: InstrumentParameterWhereInput;
  251. orderBy?: InstrumentParameterOrderByInput;
  252. skip?: Int;
  253. after?: String;
  254. before?: String;
  255. first?: Int;
  256. last?: Int;
  257. }
  258. ) => FragmentableArray<InstrumentParameter>;
  259. instrumentParametersConnection: (
  260. args?: {
  261. where?: InstrumentParameterWhereInput;
  262. orderBy?: InstrumentParameterOrderByInput;
  263. skip?: Int;
  264. after?: String;
  265. before?: String;
  266. first?: Int;
  267. last?: Int;
  268. }
  269. ) => InstrumentParameterConnectionPromise;
  270. instrumentSubsystem: (
  271. where: InstrumentSubsystemWhereUniqueInput
  272. ) => InstrumentSubsystemPromise;
  273. instrumentSubsystems: (
  274. args?: {
  275. where?: InstrumentSubsystemWhereInput;
  276. orderBy?: InstrumentSubsystemOrderByInput;
  277. skip?: Int;
  278. after?: String;
  279. before?: String;
  280. first?: Int;
  281. last?: Int;
  282. }
  283. ) => FragmentableArray<InstrumentSubsystem>;
  284. instrumentSubsystemsConnection: (
  285. args?: {
  286. where?: InstrumentSubsystemWhereInput;
  287. orderBy?: InstrumentSubsystemOrderByInput;
  288. skip?: Int;
  289. after?: String;
  290. before?: String;
  291. first?: Int;
  292. last?: Int;
  293. }
  294. ) => InstrumentSubsystemConnectionPromise;
  295. measurement: (where: MeasurementWhereUniqueInput) => MeasurementPromise;
  296. measurements: (
  297. args?: {
  298. where?: MeasurementWhereInput;
  299. orderBy?: MeasurementOrderByInput;
  300. skip?: Int;
  301. after?: String;
  302. before?: String;
  303. first?: Int;
  304. last?: Int;
  305. }
  306. ) => FragmentableArray<Measurement>;
  307. measurementsConnection: (
  308. args?: {
  309. where?: MeasurementWhereInput;
  310. orderBy?: MeasurementOrderByInput;
  311. skip?: Int;
  312. after?: String;
  313. before?: String;
  314. first?: Int;
  315. last?: Int;
  316. }
  317. ) => MeasurementConnectionPromise;
  318. measurementRun: (
  319. where: MeasurementRunWhereUniqueInput
  320. ) => MeasurementRunPromise;
  321. measurementRuns: (
  322. args?: {
  323. where?: MeasurementRunWhereInput;
  324. orderBy?: MeasurementRunOrderByInput;
  325. skip?: Int;
  326. after?: String;
  327. before?: String;
  328. first?: Int;
  329. last?: Int;
  330. }
  331. ) => FragmentableArray<MeasurementRun>;
  332. measurementRunsConnection: (
  333. args?: {
  334. where?: MeasurementRunWhereInput;
  335. orderBy?: MeasurementRunOrderByInput;
  336. skip?: Int;
  337. after?: String;
  338. before?: String;
  339. first?: Int;
  340. last?: Int;
  341. }
  342. ) => MeasurementRunConnectionPromise;
  343. project: (where: ProjectWhereUniqueInput) => ProjectPromise;
  344. projects: (
  345. args?: {
  346. where?: ProjectWhereInput;
  347. orderBy?: ProjectOrderByInput;
  348. skip?: Int;
  349. after?: String;
  350. before?: String;
  351. first?: Int;
  352. last?: Int;
  353. }
  354. ) => FragmentableArray<Project>;
  355. projectsConnection: (
  356. args?: {
  357. where?: ProjectWhereInput;
  358. orderBy?: ProjectOrderByInput;
  359. skip?: Int;
  360. after?: String;
  361. before?: String;
  362. first?: Int;
  363. last?: Int;
  364. }
  365. ) => ProjectConnectionPromise;
  366. projectVersion: (
  367. where: ProjectVersionWhereUniqueInput
  368. ) => ProjectVersionPromise;
  369. projectVersions: (
  370. args?: {
  371. where?: ProjectVersionWhereInput;
  372. orderBy?: ProjectVersionOrderByInput;
  373. skip?: Int;
  374. after?: String;
  375. before?: String;
  376. first?: Int;
  377. last?: Int;
  378. }
  379. ) => FragmentableArray<ProjectVersion>;
  380. projectVersionsConnection: (
  381. args?: {
  382. where?: ProjectVersionWhereInput;
  383. orderBy?: ProjectVersionOrderByInput;
  384. skip?: Int;
  385. after?: String;
  386. before?: String;
  387. first?: Int;
  388. last?: Int;
  389. }
  390. ) => ProjectVersionConnectionPromise;
  391. setup: (where: SetupWhereUniqueInput) => SetupPromise;
  392. setups: (
  393. args?: {
  394. where?: SetupWhereInput;
  395. orderBy?: SetupOrderByInput;
  396. skip?: Int;
  397. after?: String;
  398. before?: String;
  399. first?: Int;
  400. last?: Int;
  401. }
  402. ) => FragmentableArray<Setup>;
  403. setupsConnection: (
  404. args?: {
  405. where?: SetupWhereInput;
  406. orderBy?: SetupOrderByInput;
  407. skip?: Int;
  408. after?: String;
  409. before?: String;
  410. first?: Int;
  411. last?: Int;
  412. }
  413. ) => SetupConnectionPromise;
  414. setupHardware: (where: SetupHardwareWhereUniqueInput) => SetupHardwarePromise;
  415. setupHardwares: (
  416. args?: {
  417. where?: SetupHardwareWhereInput;
  418. orderBy?: SetupHardwareOrderByInput;
  419. skip?: Int;
  420. after?: String;
  421. before?: String;
  422. first?: Int;
  423. last?: Int;
  424. }
  425. ) => FragmentableArray<SetupHardware>;
  426. setupHardwaresConnection: (
  427. args?: {
  428. where?: SetupHardwareWhereInput;
  429. orderBy?: SetupHardwareOrderByInput;
  430. skip?: Int;
  431. after?: String;
  432. before?: String;
  433. first?: Int;
  434. last?: Int;
  435. }
  436. ) => SetupHardwareConnectionPromise;
  437. setupHardwareInstance: (
  438. where: SetupHardwareInstanceWhereUniqueInput
  439. ) => SetupHardwareInstancePromise;
  440. setupHardwareInstances: (
  441. args?: {
  442. where?: SetupHardwareInstanceWhereInput;
  443. orderBy?: SetupHardwareInstanceOrderByInput;
  444. skip?: Int;
  445. after?: String;
  446. before?: String;
  447. first?: Int;
  448. last?: Int;
  449. }
  450. ) => FragmentableArray<SetupHardwareInstance>;
  451. setupHardwareInstancesConnection: (
  452. args?: {
  453. where?: SetupHardwareInstanceWhereInput;
  454. orderBy?: SetupHardwareInstanceOrderByInput;
  455. skip?: Int;
  456. after?: String;
  457. before?: String;
  458. first?: Int;
  459. last?: Int;
  460. }
  461. ) => SetupHardwareInstanceConnectionPromise;
  462. user: (where: UserWhereUniqueInput) => UserPromise;
  463. users: (
  464. args?: {
  465. where?: UserWhereInput;
  466. orderBy?: UserOrderByInput;
  467. skip?: Int;
  468. after?: String;
  469. before?: String;
  470. first?: Int;
  471. last?: Int;
  472. }
  473. ) => FragmentableArray<User>;
  474. usersConnection: (
  475. args?: {
  476. where?: UserWhereInput;
  477. orderBy?: UserOrderByInput;
  478. skip?: Int;
  479. after?: String;
  480. before?: String;
  481. first?: Int;
  482. last?: Int;
  483. }
  484. ) => UserConnectionPromise;
  485. node: (args: { id: ID_Output }) => Node;
  486. /**
  487. * Mutations
  488. */
  489. createCharacterization: (
  490. data: CharacterizationCreateInput
  491. ) => CharacterizationPromise;
  492. updateCharacterization: (
  493. args: {
  494. data: CharacterizationUpdateInput;
  495. where: CharacterizationWhereUniqueInput;
  496. }
  497. ) => CharacterizationPromise;
  498. upsertCharacterization: (
  499. args: {
  500. where: CharacterizationWhereUniqueInput;
  501. create: CharacterizationCreateInput;
  502. update: CharacterizationUpdateInput;
  503. }
  504. ) => CharacterizationPromise;
  505. deleteCharacterization: (
  506. where: CharacterizationWhereUniqueInput
  507. ) => CharacterizationPromise;
  508. deleteManyCharacterizations: (
  509. where?: CharacterizationWhereInput
  510. ) => BatchPayloadPromise;
  511. createComment: (data: CommentCreateInput) => CommentPromise;
  512. updateComment: (
  513. args: { data: CommentUpdateInput; where: CommentWhereUniqueInput }
  514. ) => CommentPromise;
  515. updateManyComments: (
  516. args: { data: CommentUpdateManyMutationInput; where?: CommentWhereInput }
  517. ) => BatchPayloadPromise;
  518. upsertComment: (
  519. args: {
  520. where: CommentWhereUniqueInput;
  521. create: CommentCreateInput;
  522. update: CommentUpdateInput;
  523. }
  524. ) => CommentPromise;
  525. deleteComment: (where: CommentWhereUniqueInput) => CommentPromise;
  526. deleteManyComments: (where?: CommentWhereInput) => BatchPayloadPromise;
  527. createDUT: (data: DUTCreateInput) => DUTPromise;
  528. updateDUT: (
  529. args: { data: DUTUpdateInput; where: DUTWhereUniqueInput }
  530. ) => DUTPromise;
  531. updateManyDUTs: (
  532. args: { data: DUTUpdateManyMutationInput; where?: DUTWhereInput }
  533. ) => BatchPayloadPromise;
  534. upsertDUT: (
  535. args: {
  536. where: DUTWhereUniqueInput;
  537. create: DUTCreateInput;
  538. update: DUTUpdateInput;
  539. }
  540. ) => DUTPromise;
  541. deleteDUT: (where: DUTWhereUniqueInput) => DUTPromise;
  542. deleteManyDUTs: (where?: DUTWhereInput) => BatchPayloadPromise;
  543. createEvent: (data: EventCreateInput) => EventPromise;
  544. updateEvent: (
  545. args: { data: EventUpdateInput; where: EventWhereUniqueInput }
  546. ) => EventPromise;
  547. updateManyEvents: (
  548. args: { data: EventUpdateManyMutationInput; where?: EventWhereInput }
  549. ) => BatchPayloadPromise;
  550. upsertEvent: (
  551. args: {
  552. where: EventWhereUniqueInput;
  553. create: EventCreateInput;
  554. update: EventUpdateInput;
  555. }
  556. ) => EventPromise;
  557. deleteEvent: (where: EventWhereUniqueInput) => EventPromise;
  558. deleteManyEvents: (where?: EventWhereInput) => BatchPayloadPromise;
  559. createFile: (data: FileCreateInput) => FilePromise;
  560. updateFile: (
  561. args: { data: FileUpdateInput; where: FileWhereUniqueInput }
  562. ) => FilePromise;
  563. updateManyFiles: (
  564. args: { data: FileUpdateManyMutationInput; where?: FileWhereInput }
  565. ) => BatchPayloadPromise;
  566. upsertFile: (
  567. args: {
  568. where: FileWhereUniqueInput;
  569. create: FileCreateInput;
  570. update: FileUpdateInput;
  571. }
  572. ) => FilePromise;
  573. deleteFile: (where: FileWhereUniqueInput) => FilePromise;
  574. deleteManyFiles: (where?: FileWhereInput) => BatchPayloadPromise;
  575. createInstrument: (data: InstrumentCreateInput) => InstrumentPromise;
  576. updateInstrument: (
  577. args: { data: InstrumentUpdateInput; where: InstrumentWhereUniqueInput }
  578. ) => InstrumentPromise;
  579. updateManyInstruments: (
  580. args: {
  581. data: InstrumentUpdateManyMutationInput;
  582. where?: InstrumentWhereInput;
  583. }
  584. ) => BatchPayloadPromise;
  585. upsertInstrument: (
  586. args: {
  587. where: InstrumentWhereUniqueInput;
  588. create: InstrumentCreateInput;
  589. update: InstrumentUpdateInput;
  590. }
  591. ) => InstrumentPromise;
  592. deleteInstrument: (where: InstrumentWhereUniqueInput) => InstrumentPromise;
  593. deleteManyInstruments: (where?: InstrumentWhereInput) => BatchPayloadPromise;
  594. createInstrumentCommand: (
  595. data: InstrumentCommandCreateInput
  596. ) => InstrumentCommandPromise;
  597. updateInstrumentCommand: (
  598. args: {
  599. data: InstrumentCommandUpdateInput;
  600. where: InstrumentCommandWhereUniqueInput;
  601. }
  602. ) => InstrumentCommandPromise;
  603. updateManyInstrumentCommands: (
  604. args: {
  605. data: InstrumentCommandUpdateManyMutationInput;
  606. where?: InstrumentCommandWhereInput;
  607. }
  608. ) => BatchPayloadPromise;
  609. upsertInstrumentCommand: (
  610. args: {
  611. where: InstrumentCommandWhereUniqueInput;
  612. create: InstrumentCommandCreateInput;
  613. update: InstrumentCommandUpdateInput;
  614. }
  615. ) => InstrumentCommandPromise;
  616. deleteInstrumentCommand: (
  617. where: InstrumentCommandWhereUniqueInput
  618. ) => InstrumentCommandPromise;
  619. deleteManyInstrumentCommands: (
  620. where?: InstrumentCommandWhereInput
  621. ) => BatchPayloadPromise;
  622. createInstrumentInstance: (
  623. data: InstrumentInstanceCreateInput
  624. ) => InstrumentInstancePromise;
  625. updateInstrumentInstance: (
  626. args: {
  627. data: InstrumentInstanceUpdateInput;
  628. where: InstrumentInstanceWhereUniqueInput;
  629. }
  630. ) => InstrumentInstancePromise;
  631. updateManyInstrumentInstances: (
  632. args: {
  633. data: InstrumentInstanceUpdateManyMutationInput;
  634. where?: InstrumentInstanceWhereInput;
  635. }
  636. ) => BatchPayloadPromise;
  637. upsertInstrumentInstance: (
  638. args: {
  639. where: InstrumentInstanceWhereUniqueInput;
  640. create: InstrumentInstanceCreateInput;
  641. update: InstrumentInstanceUpdateInput;
  642. }
  643. ) => InstrumentInstancePromise;
  644. deleteInstrumentInstance: (
  645. where: InstrumentInstanceWhereUniqueInput
  646. ) => InstrumentInstancePromise;
  647. deleteManyInstrumentInstances: (
  648. where?: InstrumentInstanceWhereInput
  649. ) => BatchPayloadPromise;
  650. createInstrumentParameter: (
  651. data: InstrumentParameterCreateInput
  652. ) => InstrumentParameterPromise;
  653. updateInstrumentParameter: (
  654. args: {
  655. data: InstrumentParameterUpdateInput;
  656. where: InstrumentParameterWhereUniqueInput;
  657. }
  658. ) => InstrumentParameterPromise;
  659. updateManyInstrumentParameters: (
  660. args: {
  661. data: InstrumentParameterUpdateManyMutationInput;
  662. where?: InstrumentParameterWhereInput;
  663. }
  664. ) => BatchPayloadPromise;
  665. upsertInstrumentParameter: (
  666. args: {
  667. where: InstrumentParameterWhereUniqueInput;
  668. create: InstrumentParameterCreateInput;
  669. update: InstrumentParameterUpdateInput;
  670. }
  671. ) => InstrumentParameterPromise;
  672. deleteInstrumentParameter: (
  673. where: InstrumentParameterWhereUniqueInput
  674. ) => InstrumentParameterPromise;
  675. deleteManyInstrumentParameters: (
  676. where?: InstrumentParameterWhereInput
  677. ) => BatchPayloadPromise;
  678. createInstrumentSubsystem: (
  679. data: InstrumentSubsystemCreateInput
  680. ) => InstrumentSubsystemPromise;
  681. updateInstrumentSubsystem: (
  682. args: {
  683. data: InstrumentSubsystemUpdateInput;
  684. where: InstrumentSubsystemWhereUniqueInput;
  685. }
  686. ) => InstrumentSubsystemPromise;
  687. updateManyInstrumentSubsystems: (
  688. args: {
  689. data: InstrumentSubsystemUpdateManyMutationInput;
  690. where?: InstrumentSubsystemWhereInput;
  691. }
  692. ) => BatchPayloadPromise;
  693. upsertInstrumentSubsystem: (
  694. args: {
  695. where: InstrumentSubsystemWhereUniqueInput;
  696. create: InstrumentSubsystemCreateInput;
  697. update: InstrumentSubsystemUpdateInput;
  698. }
  699. ) => InstrumentSubsystemPromise;
  700. deleteInstrumentSubsystem: (
  701. where: InstrumentSubsystemWhereUniqueInput
  702. ) => InstrumentSubsystemPromise;
  703. deleteManyInstrumentSubsystems: (
  704. where?: InstrumentSubsystemWhereInput
  705. ) => BatchPayloadPromise;
  706. createMeasurement: (data: MeasurementCreateInput) => MeasurementPromise;
  707. updateMeasurement: (
  708. args: { data: MeasurementUpdateInput; where: MeasurementWhereUniqueInput }
  709. ) => MeasurementPromise;
  710. updateManyMeasurements: (
  711. args: {
  712. data: MeasurementUpdateManyMutationInput;
  713. where?: MeasurementWhereInput;
  714. }
  715. ) => BatchPayloadPromise;
  716. upsertMeasurement: (
  717. args: {
  718. where: MeasurementWhereUniqueInput;
  719. create: MeasurementCreateInput;
  720. update: MeasurementUpdateInput;
  721. }
  722. ) => MeasurementPromise;
  723. deleteMeasurement: (where: MeasurementWhereUniqueInput) => MeasurementPromise;
  724. deleteManyMeasurements: (
  725. where?: MeasurementWhereInput
  726. ) => BatchPayloadPromise;
  727. createMeasurementRun: (
  728. data: MeasurementRunCreateInput
  729. ) => MeasurementRunPromise;
  730. updateMeasurementRun: (
  731. args: {
  732. data: MeasurementRunUpdateInput;
  733. where: MeasurementRunWhereUniqueInput;
  734. }
  735. ) => MeasurementRunPromise;
  736. updateManyMeasurementRuns: (
  737. args: {
  738. data: MeasurementRunUpdateManyMutationInput;
  739. where?: MeasurementRunWhereInput;
  740. }
  741. ) => BatchPayloadPromise;
  742. upsertMeasurementRun: (
  743. args: {
  744. where: MeasurementRunWhereUniqueInput;
  745. create: MeasurementRunCreateInput;
  746. update: MeasurementRunUpdateInput;
  747. }
  748. ) => MeasurementRunPromise;
  749. deleteMeasurementRun: (
  750. where: MeasurementRunWhereUniqueInput
  751. ) => MeasurementRunPromise;
  752. deleteManyMeasurementRuns: (
  753. where?: MeasurementRunWhereInput
  754. ) => BatchPayloadPromise;
  755. createProject: (data: ProjectCreateInput) => ProjectPromise;
  756. updateProject: (
  757. args: { data: ProjectUpdateInput; where: ProjectWhereUniqueInput }
  758. ) => ProjectPromise;
  759. updateManyProjects: (
  760. args: { data: ProjectUpdateManyMutationInput; where?: ProjectWhereInput }
  761. ) => BatchPayloadPromise;
  762. upsertProject: (
  763. args: {
  764. where: ProjectWhereUniqueInput;
  765. create: ProjectCreateInput;
  766. update: ProjectUpdateInput;
  767. }
  768. ) => ProjectPromise;
  769. deleteProject: (where: ProjectWhereUniqueInput) => ProjectPromise;
  770. deleteManyProjects: (where?: ProjectWhereInput) => BatchPayloadPromise;
  771. createProjectVersion: (
  772. data: ProjectVersionCreateInput
  773. ) => ProjectVersionPromise;
  774. updateProjectVersion: (
  775. args: {
  776. data: ProjectVersionUpdateInput;
  777. where: ProjectVersionWhereUniqueInput;
  778. }
  779. ) => ProjectVersionPromise;
  780. updateManyProjectVersions: (
  781. args: {
  782. data: ProjectVersionUpdateManyMutationInput;
  783. where?: ProjectVersionWhereInput;
  784. }
  785. ) => BatchPayloadPromise;
  786. upsertProjectVersion: (
  787. args: {
  788. where: ProjectVersionWhereUniqueInput;
  789. create: ProjectVersionCreateInput;
  790. update: ProjectVersionUpdateInput;
  791. }
  792. ) => ProjectVersionPromise;
  793. deleteProjectVersion: (
  794. where: ProjectVersionWhereUniqueInput
  795. ) => ProjectVersionPromise;
  796. deleteManyProjectVersions: (
  797. where?: ProjectVersionWhereInput
  798. ) => BatchPayloadPromise;
  799. createSetup: (data: SetupCreateInput) => SetupPromise;
  800. updateSetup: (
  801. args: { data: SetupUpdateInput; where: SetupWhereUniqueInput }
  802. ) => SetupPromise;
  803. updateManySetups: (
  804. args: { data: SetupUpdateManyMutationInput; where?: SetupWhereInput }
  805. ) => BatchPayloadPromise;
  806. upsertSetup: (
  807. args: {
  808. where: SetupWhereUniqueInput;
  809. create: SetupCreateInput;
  810. update: SetupUpdateInput;
  811. }
  812. ) => SetupPromise;
  813. deleteSetup: (where: SetupWhereUniqueInput) => SetupPromise;
  814. deleteManySetups: (where?: SetupWhereInput) => BatchPayloadPromise;
  815. createSetupHardware: (data: SetupHardwareCreateInput) => SetupHardwarePromise;
  816. updateSetupHardware: (
  817. args: {
  818. data: SetupHardwareUpdateInput;
  819. where: SetupHardwareWhereUniqueInput;
  820. }
  821. ) => SetupHardwarePromise;
  822. updateManySetupHardwares: (
  823. args: {
  824. data: SetupHardwareUpdateManyMutationInput;
  825. where?: SetupHardwareWhereInput;
  826. }
  827. ) => BatchPayloadPromise;
  828. upsertSetupHardware: (
  829. args: {
  830. where: SetupHardwareWhereUniqueInput;
  831. create: SetupHardwareCreateInput;
  832. update: SetupHardwareUpdateInput;
  833. }
  834. ) => SetupHardwarePromise;
  835. deleteSetupHardware: (
  836. where: SetupHardwareWhereUniqueInput
  837. ) => SetupHardwarePromise;
  838. deleteManySetupHardwares: (
  839. where?: SetupHardwareWhereInput
  840. ) => BatchPayloadPromise;
  841. createSetupHardwareInstance: (
  842. data: SetupHardwareInstanceCreateInput
  843. ) => SetupHardwareInstancePromise;
  844. updateSetupHardwareInstance: (
  845. args: {
  846. data: SetupHardwareInstanceUpdateInput;
  847. where: SetupHardwareInstanceWhereUniqueInput;
  848. }
  849. ) => SetupHardwareInstancePromise;
  850. updateManySetupHardwareInstances: (
  851. args: {
  852. data: SetupHardwareInstanceUpdateManyMutationInput;
  853. where?: SetupHardwareInstanceWhereInput;
  854. }
  855. ) => BatchPayloadPromise;
  856. upsertSetupHardwareInstance: (
  857. args: {
  858. where: SetupHardwareInstanceWhereUniqueInput;
  859. create: SetupHardwareInstanceCreateInput;
  860. update: SetupHardwareInstanceUpdateInput;
  861. }
  862. ) => SetupHardwareInstancePromise;
  863. deleteSetupHardwareInstance: (
  864. where: SetupHardwareInstanceWhereUniqueInput
  865. ) => SetupHardwareInstancePromise;
  866. deleteManySetupHardwareInstances: (
  867. where?: SetupHardwareInstanceWhereInput
  868. ) => BatchPayloadPromise;
  869. createUser: (data: UserCreateInput) => UserPromise;
  870. updateUser: (
  871. args: { data: UserUpdateInput; where: UserWhereUniqueInput }
  872. ) => UserPromise;
  873. updateManyUsers: (
  874. args: { data: UserUpdateManyMutationInput; where?: UserWhereInput }
  875. ) => BatchPayloadPromise;
  876. upsertUser: (
  877. args: {
  878. where: UserWhereUniqueInput;
  879. create: UserCreateInput;
  880. update: UserUpdateInput;
  881. }
  882. ) => UserPromise;
  883. deleteUser: (where: UserWhereUniqueInput) => UserPromise;
  884. deleteManyUsers: (where?: UserWhereInput) => BatchPayloadPromise;
  885. /**
  886. * Subscriptions
  887. */
  888. $subscribe: Subscription;
  889. }
  890. export interface Subscription {
  891. characterization: (
  892. where?: CharacterizationSubscriptionWhereInput
  893. ) => CharacterizationSubscriptionPayloadSubscription;
  894. comment: (
  895. where?: CommentSubscriptionWhereInput
  896. ) => CommentSubscriptionPayloadSubscription;
  897. dUT: (
  898. where?: DUTSubscriptionWhereInput
  899. ) => DUTSubscriptionPayloadSubscription;
  900. event: (
  901. where?: EventSubscriptionWhereInput
  902. ) => EventSubscriptionPayloadSubscription;
  903. file: (
  904. where?: FileSubscriptionWhereInput
  905. ) => FileSubscriptionPayloadSubscription;
  906. instrument: (
  907. where?: InstrumentSubscriptionWhereInput
  908. ) => InstrumentSubscriptionPayloadSubscription;
  909. instrumentCommand: (
  910. where?: InstrumentCommandSubscriptionWhereInput
  911. ) => InstrumentCommandSubscriptionPayloadSubscription;
  912. instrumentInstance: (
  913. where?: InstrumentInstanceSubscriptionWhereInput
  914. ) => InstrumentInstanceSubscriptionPayloadSubscription;
  915. instrumentParameter: (
  916. where?: InstrumentParameterSubscriptionWhereInput
  917. ) => InstrumentParameterSubscriptionPayloadSubscription;
  918. instrumentSubsystem: (
  919. where?: InstrumentSubsystemSubscriptionWhereInput
  920. ) => InstrumentSubsystemSubscriptionPayloadSubscription;
  921. measurement: (
  922. where?: MeasurementSubscriptionWhereInput
  923. ) => MeasurementSubscriptionPayloadSubscription;
  924. measurementRun: (
  925. where?: MeasurementRunSubscriptionWhereInput
  926. ) => MeasurementRunSubscriptionPayloadSubscription;
  927. project: (
  928. where?: ProjectSubscriptionWhereInput
  929. ) => ProjectSubscriptionPayloadSubscription;
  930. projectVersion: (
  931. where?: ProjectVersionSubscriptionWhereInput
  932. ) => ProjectVersionSubscriptionPayloadSubscription;
  933. setup: (
  934. where?: SetupSubscriptionWhereInput
  935. ) => SetupSubscriptionPayloadSubscription;
  936. setupHardware: (
  937. where?: SetupHardwareSubscriptionWhereInput
  938. ) => SetupHardwareSubscriptionPayloadSubscription;
  939. setupHardwareInstance: (
  940. where?: SetupHardwareInstanceSubscriptionWhereInput
  941. ) => SetupHardwareInstanceSubscriptionPayloadSubscription;
  942. user: (
  943. where?: UserSubscriptionWhereInput
  944. ) => UserSubscriptionPayloadSubscription;
  945. }
  946. export interface ClientConstructor<T> {
  947. new (options?: BaseClientOptions): T;
  948. }
  949. /**
  950. * Types
  951. */
  952. export type FileOrderByInput =
  953. | "id_ASC"
  954. | "id_DESC"
  955. | "filename_ASC"
  956. | "filename_DESC"
  957. | "mimetype_ASC"
  958. | "mimetype_DESC"
  959. | "truncated_ASC"
  960. | "truncated_DESC"
  961. | "size_ASC"
  962. | "size_DESC"
  963. | "md5_ASC"
  964. | "md5_DESC"
  965. | "createdAt_ASC"
  966. | "createdAt_DESC"
  967. | "updatedAt_ASC"
  968. | "updatedAt_DESC";
  969. export type MeasurementRunOrderByInput =
  970. | "id_ASC"
  971. | "id_DESC"
  972. | "location_ASC"
  973. | "location_DESC"
  974. | "temperature_ASC"
  975. | "temperature_DESC"
  976. | "startTime_ASC"
  977. | "startTime_DESC"
  978. | "endTime_ASC"
  979. | "endTime_DESC"
  980. | "createdAt_ASC"
  981. | "createdAt_DESC"
  982. | "updatedAt_ASC"
  983. | "updatedAt_DESC";
  984. export type UserOrderByInput =
  985. | "id_ASC"
  986. | "id_DESC"
  987. | "email_ASC"
  988. | "email_DESC"
  989. | "name_ASC"
  990. | "name_DESC"
  991. | "abbreviation_ASC"
  992. | "abbreviation_DESC"
  993. | "password_ASC"
  994. | "password_DESC"
  995. | "createdAt_ASC"
  996. | "createdAt_DESC"
  997. | "updatedAt_ASC"
  998. | "updatedAt_DESC";
  999. export type EventOrderByInput =
  1000. | "id_ASC"
  1001. | "id_DESC"
  1002. | "type_ASC"
  1003. | "type_DESC"
  1004. | "when_ASC"
  1005. | "when_DESC"
  1006. | "createdAt_ASC"
  1007. | "createdAt_DESC"
  1008. | "updatedAt_ASC"
  1009. | "updatedAt_DESC";
  1010. export type CommentOrderByInput =
  1011. | "id_ASC"
  1012. | "id_DESC"
  1013. | "text_ASC"
  1014. | "text_DESC"
  1015. | "createdAt_ASC"
  1016. | "createdAt_DESC"
  1017. | "updatedAt_ASC"
  1018. | "updatedAt_DESC";
  1019. export type MeasurementOrderByInput =
  1020. | "id_ASC"
  1021. | "id_DESC"
  1022. | "createdAt_ASC"
  1023. | "createdAt_DESC"
  1024. | "intValue_ASC"
  1025. | "intValue_DESC"
  1026. | "floatValue_ASC"
  1027. | "floatValue_DESC"
  1028. | "stringValue_ASC"
  1029. | "stringValue_DESC"
  1030. | "updatedAt_ASC"
  1031. | "updatedAt_DESC";
  1032. export type SetupHardwareInstanceOrderByInput =
  1033. | "id_ASC"
  1034. | "id_DESC"
  1035. | "identifier_ASC"
  1036. | "identifier_DESC"
  1037. | "createdAt_ASC"
  1038. | "createdAt_DESC"
  1039. | "updatedAt_ASC"
  1040. | "updatedAt_DESC";
  1041. export type InstrumentInstanceOrderByInput =
  1042. | "id_ASC"
  1043. | "id_DESC"
  1044. | "identifier_ASC"
  1045. | "identifier_DESC"
  1046. | "label_ASC"
  1047. | "label_DESC"
  1048. | "location_ASC"
  1049. | "location_DESC"
  1050. | "createdAt_ASC"
  1051. | "createdAt_DESC"
  1052. | "updatedAt_ASC"
  1053. | "updatedAt_DESC";
  1054. export type InstrumentCommandOrderByInput =
  1055. | "id_ASC"
  1056. | "id_DESC"
  1057. | "tag_ASC"
  1058. | "tag_DESC"
  1059. | "name_ASC"
  1060. | "name_DESC"
  1061. | "description_ASC"
  1062. | "description_DESC"
  1063. | "readString_ASC"
  1064. | "readString_DESC"
  1065. | "writeString_ASC"
  1066. | "writeString_DESC"
  1067. | "createdAt_ASC"
  1068. | "createdAt_DESC"
  1069. | "updatedAt_ASC"
  1070. | "updatedAt_DESC";
  1071. export type InstrumentParameterOrderByInput =
  1072. | "id_ASC"
  1073. | "id_DESC"
  1074. | "tag_ASC"
  1075. | "tag_DESC"
  1076. | "name_ASC"
  1077. | "name_DESC"
  1078. | "description_ASC"
  1079. | "description_DESC"
  1080. | "type_ASC"
  1081. | "type_DESC"
  1082. | "values_ASC"
  1083. | "values_DESC"
  1084. | "createdAt_ASC"
  1085. | "createdAt_DESC"
  1086. | "updatedAt_ASC"
  1087. | "updatedAt_DESC";
  1088. export type InstrumentSubsystemOrderByInput =
  1089. | "id_ASC"
  1090. | "id_DESC"
  1091. | "name_ASC"
  1092. | "name_DESC"
  1093. | "description_ASC"
  1094. | "description_DESC"
  1095. | "createdAt_ASC"
  1096. | "createdAt_DESC"
  1097. | "updatedAt_ASC"
  1098. | "updatedAt_DESC";
  1099. export type CharacterizationOrderByInput =
  1100. | "id_ASC"
  1101. | "id_DESC"
  1102. | "createdAt_ASC"
  1103. | "createdAt_DESC"
  1104. | "updatedAt_ASC"
  1105. | "updatedAt_DESC";
  1106. export type DUTOrderByInput =
  1107. | "id_ASC"
  1108. | "id_DESC"
  1109. | "name_ASC"
  1110. | "name_DESC"
  1111. | "description_ASC"
  1112. | "description_DESC"
  1113. | "createdAt_ASC"
  1114. | "createdAt_DESC"
  1115. | "updatedAt_ASC"
  1116. | "updatedAt_DESC";
  1117. export type InstrumentOrderByInput =
  1118. | "id_ASC"
  1119. | "id_DESC"
  1120. | "name_ASC"
  1121. | "name_DESC"
  1122. | "description_ASC"
  1123. | "description_DESC"
  1124. | "createdAt_ASC"
  1125. | "createdAt_DESC"
  1126. | "updatedAt_ASC"
  1127. | "updatedAt_DESC";
  1128. export type ProjectOrderByInput =
  1129. | "id_ASC"
  1130. | "id_DESC"
  1131. | "name_ASC"
  1132. | "name_DESC"
  1133. | "abbreviation_ASC"
  1134. | "abbreviation_DESC"
  1135. | "description_ASC"
  1136. | "description_DESC"
  1137. | "createdAt_ASC"
  1138. | "createdAt_DESC"
  1139. | "updatedAt_ASC"
  1140. | "updatedAt_DESC";
  1141. export type ProjectVersionOrderByInput =
  1142. | "id_ASC"
  1143. | "id_DESC"
  1144. | "name_ASC"
  1145. | "name_DESC"
  1146. | "changes_ASC"
  1147. | "changes_DESC"
  1148. | "date_ASC"
  1149. | "date_DESC"
  1150. | "createdAt_ASC"
  1151. | "createdAt_DESC"
  1152. | "updatedAt_ASC"
  1153. | "updatedAt_DESC";
  1154. export type SetupOrderByInput =
  1155. | "id_ASC"
  1156. | "id_DESC"
  1157. | "name_ASC"
  1158. | "name_DESC"
  1159. | "description_ASC"
  1160. | "description_DESC"
  1161. | "createdAt_ASC"
  1162. | "createdAt_DESC"
  1163. | "updatedAt_ASC"
  1164. | "updatedAt_DESC";
  1165. export type SetupHardwareOrderByInput =
  1166. | "id_ASC"
  1167. | "id_DESC"
  1168. | "name_ASC"
  1169. | "name_DESC"
  1170. | "description_ASC"
  1171. | "description_DESC"
  1172. | "createdAt_ASC"
  1173. | "createdAt_DESC"
  1174. | "updatedAt_ASC"
  1175. | "updatedAt_DESC";
  1176. export type MutationType = "CREATED" | "UPDATED" | "DELETED";
  1177. export type CharacterizationWhereUniqueInput = AtLeastOne<{
  1178. id: ID_Input;
  1179. }>;
  1180. export interface FileWhereInput {
  1181. id?: ID_Input;
  1182. id_not?: ID_Input;
  1183. id_in?: ID_Input[] | ID_Input;
  1184. id_not_in?: ID_Input[] | ID_Input;
  1185. id_lt?: ID_Input;
  1186. id_lte?: ID_Input;
  1187. id_gt?: ID_Input;
  1188. id_gte?: ID_Input;
  1189. id_contains?: ID_Input;
  1190. id_not_contains?: ID_Input;
  1191. id_starts_with?: ID_Input;
  1192. id_not_starts_with?: ID_Input;
  1193. id_ends_with?: ID_Input;
  1194. id_not_ends_with?: ID_Input;
  1195. filename?: String;
  1196. filename_not?: String;
  1197. filename_in?: String[] | String;
  1198. filename_not_in?: String[] | String;
  1199. filename_lt?: String;
  1200. filename_lte?: String;
  1201. filename_gt?: String;
  1202. filename_gte?: String;
  1203. filename_contains?: String;
  1204. filename_not_contains?: String;
  1205. filename_starts_with?: String;
  1206. filename_not_starts_with?: String;
  1207. filename_ends_with?: String;
  1208. filename_not_ends_with?: String;
  1209. mimetype?: String;
  1210. mimetype_not?: String;
  1211. mimetype_in?: String[] | String;
  1212. mimetype_not_in?: String[] | String;
  1213. mimetype_lt?: String;
  1214. mimetype_lte?: String;
  1215. mimetype_gt?: String;
  1216. mimetype_gte?: String;
  1217. mimetype_contains?: String;
  1218. mimetype_not_contains?: String;
  1219. mimetype_starts_with?: String;
  1220. mimetype_not_starts_with?: String;
  1221. mimetype_ends_with?: String;
  1222. mimetype_not_ends_with?: String;
  1223. truncated?: Boolean;
  1224. truncated_not?: Boolean;
  1225. size?: Int;
  1226. size_not?: Int;
  1227. size_in?: Int[] | Int;
  1228. size_not_in?: Int[] | Int;
  1229. size_lt?: Int;
  1230. size_lte?: Int;
  1231. size_gt?: Int;
  1232. size_gte?: Int;
  1233. md5?: String;
  1234. md5_not?: String;
  1235. md5_in?: String[] | String;
  1236. md5_not_in?: String[] | String;
  1237. md5_lt?: String;
  1238. md5_lte?: String;
  1239. md5_gt?: String;
  1240. md5_gte?: String;
  1241. md5_contains?: String;
  1242. md5_not_contains?: String;
  1243. md5_starts_with?: String;
  1244. md5_not_starts_with?: String;
  1245. md5_ends_with?: String;
  1246. md5_not_ends_with?: String;
  1247. AND?: FileWhereInput[] | FileWhereInput;
  1248. OR?: FileWhereInput[] | FileWhereInput;
  1249. NOT?: FileWhereInput[] | FileWhereInput;
  1250. }
  1251. export interface MeasurementRunWhereInput {
  1252. id?: ID_Input;
  1253. id_not?: ID_Input;
  1254. id_in?: ID_Input[] | ID_Input;
  1255. id_not_in?: ID_Input[] | ID_Input;
  1256. id_lt?: ID_Input;
  1257. id_lte?: ID_Input;
  1258. id_gt?: ID_Input;
  1259. id_gte?: ID_Input;
  1260. id_contains?: ID_Input;
  1261. id_not_contains?: ID_Input;
  1262. id_starts_with?: ID_Input;
  1263. id_not_starts_with?: ID_Input;
  1264. id_ends_with?: ID_Input;
  1265. id_not_ends_with?: ID_Input;
  1266. operator_every?: UserWhereInput;
  1267. operator_some?: UserWhereInput;
  1268. operator_none?: UserWhereInput;
  1269. location?: String;
  1270. location_not?: String;
  1271. location_in?: String[] | String;
  1272. location_not_in?: String[] | String;
  1273. location_lt?: String;
  1274. location_lte?: String;
  1275. location_gt?: String;
  1276. location_gte?: String;
  1277. location_contains?: String;
  1278. location_not_contains?: String;
  1279. location_starts_with?: String;
  1280. location_not_starts_with?: String;
  1281. location_ends_with?: String;
  1282. location_not_ends_with?: String;
  1283. temperature?: Float;
  1284. temperature_not?: Float;
  1285. temperature_in?: Float[] | Float;
  1286. temperature_not_in?: Float[] | Float;
  1287. temperature_lt?: Float;
  1288. temperature_lte?: Float;
  1289. temperature_gt?: Float;
  1290. temperature_gte?: Float;
  1291. startTime?: DateTimeInput;
  1292. startTime_not?: DateTimeInput;
  1293. startTime_in?: DateTimeInput[] | DateTimeInput;
  1294. startTime_not_in?: DateTimeInput[] | DateTimeInput;
  1295. startTime_lt?: DateTimeInput;
  1296. startTime_lte?: DateTimeInput;
  1297. startTime_gt?: DateTimeInput;
  1298. startTime_gte?: DateTimeInput;
  1299. endTime?: DateTimeInput;
  1300. endTime_not?: DateTimeInput;
  1301. endTime_in?: DateTimeInput[] | DateTimeInput;
  1302. endTime_not_in?: DateTimeInput[] | DateTimeInput;
  1303. endTime_lt?: DateTimeInput;
  1304. endTime_lte?: DateTimeInput;
  1305. endTime_gt?: DateTimeInput;
  1306. endTime_gte?: DateTimeInput;
  1307. timeline_every?: EventWhereInput;
  1308. timeline_some?: EventWhereInput;
  1309. timeline_none?: EventWhereInput;
  1310. comments_every?: CommentWhereInput;
  1311. comments_some?: CommentWhereInput;
  1312. comments_none?: CommentWhereInput;
  1313. measurements_every?: MeasurementWhereInput;
  1314. measurements_some?: MeasurementWhereInput;
  1315. measurements_none?: MeasurementWhereInput;
  1316. setup?: SetupWhereInput;
  1317. AND?: MeasurementRunWhereInput[] | MeasurementRunWhereInput;
  1318. OR?: MeasurementRunWhereInput[] | MeasurementRunWhereInput;
  1319. NOT?: MeasurementRunWhereInput[] | MeasurementRunWhereInput;
  1320. }
  1321. export interface UserWhereInput {
  1322. id?: ID_Input;
  1323. id_not?: ID_Input;
  1324. id_in?: ID_Input[] | ID_Input;
  1325. id_not_in?: ID_Input[] | ID_Input;
  1326. id_lt?: ID_Input;
  1327. id_lte?: ID_Input;
  1328. id_gt?: ID_Input;
  1329. id_gte?: ID_Input;
  1330. id_contains?: ID_Input;
  1331. id_not_contains?: ID_Input;
  1332. id_starts_with?: ID_Input;
  1333. id_not_starts_with?: ID_Input;
  1334. id_ends_with?: ID_Input;
  1335. id_not_ends_with?: ID_Input;
  1336. email?: String;
  1337. email_not?: String;
  1338. email_in?: String[] | String;
  1339. email_not_in?: String[] | String;
  1340. email_lt?: String;
  1341. email_lte?: String;
  1342. email_gt?: String;
  1343. email_gte?: String;
  1344. email_contains?: String;
  1345. email_not_contains?: String;
  1346. email_starts_with?: String;
  1347. email_not_starts_with?: String;
  1348. email_ends_with?: String;
  1349. email_not_ends_with?: String;
  1350. name?: String;
  1351. name_not?: String;
  1352. name_in?: String[] | String;
  1353. name_not_in?: String[] | String;
  1354. name_lt?: String;
  1355. name_lte?: String;
  1356. name_gt?: String;
  1357. name_gte?: String;
  1358. name_contains?: String;
  1359. name_not_contains?: String;
  1360. name_starts_with?: String;
  1361. name_not_starts_with?: String;
  1362. name_ends_with?: String;
  1363. name_not_ends_with?: String;
  1364. abbreviation?: String;
  1365. abbreviation_not?: String;
  1366. abbreviation_in?: String[] | String;
  1367. abbreviation_not_in?: String[] | String;
  1368. abbreviation_lt?: String;
  1369. abbreviation_lte?: String;
  1370. abbreviation_gt?: String;
  1371. abbreviation_gte?: String;
  1372. abbreviation_contains?: String;
  1373. abbreviation_not_contains?: String;
  1374. abbreviation_starts_with?: String;
  1375. abbreviation_not_starts_with?: String;
  1376. abbreviation_ends_with?: String;
  1377. abbreviation_not_ends_with?: String;
  1378. password?: String;
  1379. password_not?: String;
  1380. password_in?: String[] | String;
  1381. password_not_in?: String[] | String;
  1382. password_lt?: String;
  1383. password_lte?: String;
  1384. password_gt?: String;
  1385. password_gte?: String;
  1386. password_contains?: String;
  1387. password_not_contains?: String;
  1388. password_starts_with?: String;
  1389. password_not_starts_with?: String;
  1390. password_ends_with?: String;
  1391. password_not_ends_with?: String;
  1392. images_every?: FileWhereInput;
  1393. images_some?: FileWhereInput;
  1394. images_none?: FileWhereInput;
  1395. AND?: UserWhereInput[] | UserWhereInput;
  1396. OR?: UserWhereInput[] | UserWhereInput;
  1397. NOT?: UserWhereInput[] | UserWhereInput;
  1398. }
  1399. export interface EventWhereInput {
  1400. id?: ID_Input;
  1401. id_not?: ID_Input;
  1402. id_in?: ID_Input[] | ID_Input;
  1403. id_not_in?: ID_Input[] | ID_Input;
  1404. id_lt?: ID_Input;
  1405. id_lte?: ID_Input;
  1406. id_gt?: ID_Input;
  1407. id_gte?: ID_Input;
  1408. id_contains?: ID_Input;
  1409. id_not_contains?: ID_Input;
  1410. id_starts_with?: ID_Input;
  1411. id_not_starts_with?: ID_Input;
  1412. id_ends_with?: ID_Input;
  1413. id_not_ends_with?: ID_Input;
  1414. type?: String;
  1415. type_not?: String;
  1416. type_in?: String[] | String;
  1417. type_not_in?: String[] | String;
  1418. type_lt?: String;
  1419. type_lte?: String;
  1420. type_gt?: String;
  1421. type_gte?: String;
  1422. type_contains?: String;
  1423. type_not_contains?: String;
  1424. type_starts_with?: String;
  1425. type_not_starts_with?: String;
  1426. type_ends_with?: String;
  1427. type_not_ends_with?: String;
  1428. when?: DateTimeInput;
  1429. when_not?: DateTimeInput;
  1430. when_in?: DateTimeInput[] | DateTimeInput;
  1431. when_not_in?: DateTimeInput[] | DateTimeInput;
  1432. when_lt?: DateTimeInput;
  1433. when_lte?: DateTimeInput;
  1434. when_gt?: DateTimeInput;
  1435. when_gte?: DateTimeInput;
  1436. AND?: EventWhereInput[] | EventWhereInput;
  1437. OR?: EventWhereInput[] | EventWhereInput;
  1438. NOT?: EventWhereInput[] | EventWhereInput;
  1439. }
  1440. export interface CommentWhereInput {
  1441. id?: ID_Input;
  1442. id_not?: ID_Input;
  1443. id_in?: ID_Input[] | ID_Input;
  1444. id_not_in?: ID_Input[] | ID_Input;
  1445. id_lt?: ID_Input;
  1446. id_lte?: ID_Input;
  1447. id_gt?: ID_Input;
  1448. id_gte?: ID_Input;
  1449. id_contains?: ID_Input;
  1450. id_not_contains?: ID_Input;
  1451. id_starts_with?: ID_Input;
  1452. id_not_starts_with?: ID_Input;
  1453. id_ends_with?: ID_Input;
  1454. id_not_ends_with?: ID_Input;
  1455. text?: String;
  1456. text_not?: String;
  1457. text_in?: String[] | String;
  1458. text_not_in?: String[] | String;
  1459. text_lt?: String;
  1460. text_lte?: String;
  1461. text_gt?: String;
  1462. text_gte?: String;
  1463. text_contains?: String;
  1464. text_not_contains?: String;
  1465. text_starts_with?: String;
  1466. text_not_starts_with?: String;
  1467. text_ends_with?: String;
  1468. text_not_ends_with?: String;
  1469. createdAt?: DateTimeInput;
  1470. createdAt_not?: DateTimeInput;
  1471. createdAt_in?: DateTimeInput[] | DateTimeInput;
  1472. createdAt_not_in?: DateTimeInput[] | DateTimeInput;
  1473. createdAt_lt?: DateTimeInput;
  1474. createdAt_lte?: DateTimeInput;
  1475. createdAt_gt?: DateTimeInput;
  1476. createdAt_gte?: DateTimeInput;
  1477. previousVersion?: CommentWhereInput;
  1478. AND?: CommentWhereInput[] | CommentWhereInput;
  1479. OR?: CommentWhereInput[] | CommentWhereInput;
  1480. NOT?: CommentWhereInput[] | CommentWhereInput;
  1481. }
  1482. export interface MeasurementWhereInput {
  1483. id?: ID_Input;
  1484. id_not?: ID_Input;
  1485. id_in?: ID_Input[] | ID_Input;
  1486. id_not_in?: ID_Input[] | ID_Input;
  1487. id_lt?: ID_Input;
  1488. id_lte?: ID_Input;
  1489. id_gt?: ID_Input;
  1490. id_gte?: ID_Input;
  1491. id_contains?: ID_Input;
  1492. id_not_contains?: ID_Input;
  1493. id_starts_with?: ID_Input;
  1494. id_not_starts_with?: ID_Input;
  1495. id_ends_with?: ID_Input;
  1496. id_not_ends_with?: ID_Input;
  1497. createdAt?: DateTimeInput;
  1498. createdAt_not?: DateTimeInput;
  1499. createdAt_in?: DateTimeInput[] | DateTimeInput;
  1500. createdAt_not_in?: DateTimeInput[] | DateTimeInput;
  1501. createdAt_lt?: DateTimeInput;
  1502. createdAt_lte?: DateTimeInput;
  1503. createdAt_gt?: DateTimeInput;
  1504. createdAt_gte?: DateTimeInput;
  1505. intValue?: Int;
  1506. intValue_not?: Int;
  1507. intValue_in?: Int[] | Int;
  1508. intValue_not_in?: Int[] | Int;
  1509. intValue_lt?: Int;
  1510. intValue_lte?: Int;
  1511. intValue_gt?: Int;
  1512. intValue_gte?: Int;
  1513. floatValue?: Float;
  1514. floatValue_not?: Float;
  1515. floatValue_in?: Float[] | Float;
  1516. floatValue_not_in?: Float[] | Float;
  1517. floatValue_lt?: Float;
  1518. floatValue_lte?: Float;
  1519. floatValue_gt?: Float;
  1520. floatValue_gte?: Float;
  1521. stringValue?: String;
  1522. stringValue_not?: String;
  1523. stringValue_in?: String[] | String;
  1524. stringValue_not_in?: String[] | String;
  1525. stringValue_lt?: String;
  1526. stringValue_lte?: String;
  1527. stringValue_gt?: String;
  1528. stringValue_gte?: String;
  1529. stringValue_contains?: String;
  1530. stringValue_not_contains?: String;
  1531. stringValue_starts_with?: String;
  1532. stringValue_not_starts_with?: String;
  1533. stringValue_ends_with?: String;
  1534. stringValue_not_ends_with?: String;
  1535. AND?: MeasurementWhereInput[] | MeasurementWhereInput;
  1536. OR?: MeasurementWhereInput[] | MeasurementWhereInput;
  1537. NOT?: MeasurementWhereInput[] | MeasurementWhereInput;
  1538. }
  1539. export interface SetupWhereInput {
  1540. id?: ID_Input;
  1541. id_not?: ID_Input;
  1542. id_in?: ID_Input[] | ID_Input;
  1543. id_not_in?: ID_Input[] | ID_Input;
  1544. id_lt?: ID_Input;
  1545. id_lte?: ID_Input;
  1546. id_gt?: ID_Input;
  1547. id_gte?: ID_Input;
  1548. id_contains?: ID_Input;
  1549. id_not_contains?: ID_Input;
  1550. id_starts_with?: ID_Input;
  1551. id_not_starts_with?: ID_Input;
  1552. id_ends_with?: ID_Input;
  1553. id_not_ends_with?: ID_Input;
  1554. name?: String;
  1555. name_not?: String;
  1556. name_in?: String[] | String;
  1557. name_not_in?: String[] | String;
  1558. name_lt?: String;
  1559. name_lte?: String;
  1560. name_gt?: String;
  1561. name_gte?: String;
  1562. name_contains?: String;
  1563. name_not_contains?: String;
  1564. name_starts_with?: String;
  1565. name_not_starts_with?: String;
  1566. name_ends_with?: String;
  1567. name_not_ends_with?: String;
  1568. description?: String;
  1569. description_not?: String;
  1570. description_in?: String[] | String;
  1571. description_not_in?: String[] | String;
  1572. description_lt?: String;
  1573. description_lte?: String;
  1574. description_gt?: String;
  1575. description_gte?: String;
  1576. description_contains?: String;
  1577. description_not_contains?: String;
  1578. description_starts_with?: String;
  1579. description_not_starts_with?: String;
  1580. description_ends_with?: String;
  1581. description_not_ends_with?: String;
  1582. images_every?: FileWhereInput;
  1583. images_some?: FileWhereInput;
  1584. images_none?: FileWhereInput;
  1585. comments_every?: CommentWhereInput;
  1586. comments_some?: CommentWhereInput;
  1587. comments_none?: CommentWhereInput;
  1588. setupHardware_every?: SetupHardwareInstanceWhereInput;
  1589. setupHardware_some?: SetupHardwareInstanceWhereInput;
  1590. setupHardware_none?: SetupHardwareInstanceWhereInput;
  1591. instruments_every?: InstrumentInstanceWhereInput;
  1592. instruments_some?: InstrumentInstanceWhereInput;
  1593. instruments_none?: InstrumentInstanceWhereInput;
  1594. AND?: SetupWhereInput[] | SetupWhereInput;
  1595. OR?: SetupWhereInput[] | SetupWhereInput;
  1596. NOT?: SetupWhereInput[] | SetupWhereInput;
  1597. }
  1598. export interface SetupHardwareInstanceWhereInput {
  1599. id?: ID_Input;
  1600. id_not?: ID_Input;
  1601. id_in?: ID_Input[] | ID_Input;
  1602. id_not_in?: ID_Input[] | ID_Input;
  1603. id_lt?: ID_Input;
  1604. id_lte?: ID_Input;
  1605. id_gt?: ID_Input;
  1606. id_gte?: ID_Input;
  1607. id_contains?: ID_Input;
  1608. id_not_contains?: ID_Input;
  1609. id_starts_with?: ID_Input;
  1610. id_not_starts_with?: ID_Input;
  1611. id_ends_with?: ID_Input;
  1612. id_not_ends_with?: ID_Input;
  1613. setupHardware?: SetupHardwareWhereInput;
  1614. identifier?: String;
  1615. identifier_not?: String;
  1616. identifier_in?: String[] | String;
  1617. identifier_not_in?: String[] | String;
  1618. identifier_lt?: String;
  1619. identifier_lte?: String;
  1620. identifier_gt?: String;
  1621. identifier_gte?: String;
  1622. identifier_contains?: String;
  1623. identifier_not_contains?: String;
  1624. identifier_starts_with?: String;
  1625. identifier_not_starts_with?: String;
  1626. identifier_ends_with?: String;
  1627. identifier_not_ends_with?: String;
  1628. images_every?: FileWhereInput;
  1629. images_some?: FileWhereInput;
  1630. images_none?: FileWhereInput;
  1631. AND?: SetupHardwareInstanceWhereInput[] | SetupHardwareInstanceWhereInput;
  1632. OR?: SetupHardwareInstanceWhereInput[] | SetupHardwareInstanceWhereInput;
  1633. NOT?: SetupHardwareInstanceWhereInput[] | SetupHardwareInstanceWhereInput;
  1634. }
  1635. export interface SetupHardwareWhereInput {
  1636. id?: ID_Input;
  1637. id_not?: ID_Input;
  1638. id_in?: ID_Input[] | ID_Input;
  1639. id_not_in?: ID_Input[] | ID_Input;
  1640. id_lt?: ID_Input;
  1641. id_lte?: ID_Input;
  1642. id_gt?: ID_Input;
  1643. id_gte?: ID_Input;
  1644. id_contains?: ID_Input;
  1645. id_not_contains?: ID_Input;
  1646. id_starts_with?: ID_Input;
  1647. id_not_starts_with?: ID_Input;
  1648. id_ends_with?: ID_Input;
  1649. id_not_ends_with?: ID_Input;
  1650. name?: String;
  1651. name_not?: String;
  1652. name_in?: String[] | String;
  1653. name_not_in?: String[] | String;
  1654. name_lt?: String;
  1655. name_lte?: String;
  1656. name_gt?: String;
  1657. name_gte?: String;
  1658. name_contains?: String;
  1659. name_not_contains?: String;
  1660. name_starts_with?: String;
  1661. name_not_starts_with?: String;
  1662. name_ends_with?: String;
  1663. name_not_ends_with?: String;
  1664. description?: String;
  1665. description_not?: String;
  1666. description_in?: String[] | String;
  1667. description_not_in?: String[] | String;
  1668. description_lt?: String;
  1669. description_lte?: String;
  1670. description_gt?: String;
  1671. description_gte?: String;
  1672. description_contains?: String;
  1673. description_not_contains?: String;
  1674. description_starts_with?: String;
  1675. description_not_starts_with?: String;
  1676. description_ends_with?: String;
  1677. description_not_ends_with?: String;
  1678. images_every?: FileWhereInput;
  1679. images_some?: FileWhereInput;
  1680. images_none?: FileWhereInput;
  1681. AND?: SetupHardwareWhereInput[] | SetupHardwareWhereInput;
  1682. OR?: SetupHardwareWhereInput[] | SetupHardwareWhereInput;
  1683. NOT?: SetupHardwareWhereInput[] | SetupHardwareWhereInput;
  1684. }
  1685. export interface InstrumentInstanceWhereInput {
  1686. id?: ID_Input;
  1687. id_not?: ID_Input;
  1688. id_in?: ID_Input[] | ID_Input;
  1689. id_not_in?: ID_Input[] | ID_Input;
  1690. id_lt?: ID_Input;
  1691. id_lte?: ID_Input;
  1692. id_gt?: ID_Input;
  1693. id_gte?: ID_Input;
  1694. id_contains?: ID_Input;
  1695. id_not_contains?: ID_Input;
  1696. id_starts_with?: ID_Input;
  1697. id_not_starts_with?: ID_Input;
  1698. id_ends_with?: ID_Input;
  1699. id_not_ends_with?: ID_Input;
  1700. instrument?: InstrumentWhereInput;
  1701. identifier?: String;
  1702. identifier_not?: String;
  1703. identifier_in?: String[] | String;
  1704. identifier_not_in?: String[] | String;
  1705. identifier_lt?: String;
  1706. identifier_lte?: String;
  1707. identifier_gt?: String;
  1708. identifier_gte?: String;
  1709. identifier_contains?: String;
  1710. identifier_not_contains?: String;
  1711. identifier_starts_with?: String;
  1712. identifier_not_starts_with?: String;
  1713. identifier_ends_with?: String;
  1714. identifier_not_ends_with?: String;
  1715. label?: String;
  1716. label_not?: String;
  1717. label_in?: String[] | String;
  1718. label_not_in?: String[] | String;
  1719. label_lt?: String;
  1720. label_lte?: String;
  1721. label_gt?: String;
  1722. label_gte?: String;
  1723. label_contains?: String;
  1724. label_not_contains?: String;
  1725. label_starts_with?: String;
  1726. label_not_starts_with?: String;
  1727. label_ends_with?: String;
  1728. label_not_ends_with?: String;
  1729. location?: String;
  1730. location_not?: String;
  1731. location_in?: String[] | String;
  1732. location_not_in?: String[] | String;
  1733. location_lt?: String;
  1734. location_lte?: String;
  1735. location_gt?: String;
  1736. location_gte?: String;
  1737. location_contains?: String;
  1738. location_not_contains?: String;
  1739. location_starts_with?: String;
  1740. location_not_starts_with?: String;
  1741. location_ends_with?: String;
  1742. location_not_ends_with?: String;
  1743. AND?: InstrumentInstanceWhereInput[] | InstrumentInstanceWhereInput;
  1744. OR?: InstrumentInstanceWhereInput[] | InstrumentInstanceWhereInput;
  1745. NOT?: InstrumentInstanceWhereInput[] | InstrumentInstanceWhereInput;
  1746. }
  1747. export interface InstrumentWhereInput {
  1748. id?: ID_Input;
  1749. id_not?: ID_Input;
  1750. id_in?: ID_Input[] | ID_Input;
  1751. id_not_in?: ID_Input[] | ID_Input;
  1752. id_lt?: ID_Input;
  1753. id_lte?: ID_Input;
  1754. id_gt?: ID_Input;
  1755. id_gte?: ID_Input;
  1756. id_contains?: ID_Input;
  1757. id_not_contains?: ID_Input;
  1758. id_starts_with?: ID_Input;
  1759. id_not_starts_with?: ID_Input;
  1760. id_ends_with?: ID_Input;
  1761. id_not_ends_with?: ID_Input;
  1762. name?: String;
  1763. name_not?: String;
  1764. name_in?: String[] | String;
  1765. name_not_in?: String[] | String;
  1766. name_lt?: String;
  1767. name_lte?: String;
  1768. name_gt?: String;
  1769. name_gte?: String;
  1770. name_contains?: String;
  1771. name_not_contains?: String;
  1772. name_starts_with?: String;
  1773. name_not_starts_with?: String;
  1774. name_ends_with?: String;
  1775. name_not_ends_with?: String;
  1776. description?: String;
  1777. description_not?: String;
  1778. description_in?: String[] | String;
  1779. description_not_in?: String[] | String;
  1780. description_lt?: String;
  1781. description_lte?: String;
  1782. description_gt?: String;
  1783. description_gte?: String;
  1784. description_contains?: String;
  1785. description_not_contains?: String;
  1786. description_starts_with?: String;
  1787. description_not_starts_with?: String;
  1788. description_ends_with?: String;
  1789. description_not_ends_with?: String;
  1790. documents_every?: FileWhereInput;
  1791. documents_some?: FileWhereInput;
  1792. documents_none?: FileWhereInput;
  1793. commands_every?: InstrumentCommandWhereInput;
  1794. commands_some?: InstrumentCommandWhereInput;
  1795. commands_none?: InstrumentCommandWhereInput;
  1796. parameters_every?: InstrumentParameterWhereInput;
  1797. parameters_some?: InstrumentParameterWhereInput;
  1798. parameters_none?: InstrumentParameterWhereInput;
  1799. subsystems_every?: InstrumentSubsystemWhereInput;
  1800. subsystems_some?: InstrumentSubsystemWhereInput;
  1801. subsystems_none?: InstrumentSubsystemWhereInput;
  1802. AND?: InstrumentWhereInput[] | InstrumentWhereInput;
  1803. OR?: InstrumentWhereInput[] | InstrumentWhereInput;
  1804. NOT?: InstrumentWhereInput[] | InstrumentWhereInput;
  1805. }
  1806. export interface InstrumentCommandWhereInput {
  1807. id?: ID_Input;
  1808. id_not?: ID_Input;
  1809. id_in?: ID_Input[] | ID_Input;
  1810. id_not_in?: ID_Input[] | ID_Input;
  1811. id_lt?: ID_Input;
  1812. id_lte?: ID_Input;
  1813. id_gt?: ID_Input;
  1814. id_gte?: ID_Input;
  1815. id_contains?: ID_Input;
  1816. id_not_contains?: ID_Input;
  1817. id_starts_with?: ID_Input;
  1818. id_not_starts_with?: ID_Input;
  1819. id_ends_with?: ID_Input;
  1820. id_not_ends_with?: ID_Input;
  1821. tag?: String;
  1822. tag_not?: String;
  1823. tag_in?: String[] | String;
  1824. tag_not_in?: String[] | String;
  1825. tag_lt?: String;
  1826. tag_lte?: String;
  1827. tag_gt?: String;
  1828. tag_gte?: String;
  1829. tag_contains?: String;
  1830. tag_not_contains?: String;
  1831. tag_starts_with?: String;
  1832. tag_not_starts_with?: String;
  1833. tag_ends_with?: String;
  1834. tag_not_ends_with?: String;
  1835. name?: String;
  1836. name_not?: String;
  1837. name_in?: String[] | String;
  1838. name_not_in?: String[] | String;
  1839. name_lt?: String;
  1840. name_lte?: String;
  1841. name_gt?: String;
  1842. name_gte?: String;
  1843. name_contains?: String;
  1844. name_not_contains?: String;
  1845. name_starts_with?: String;
  1846. name_not_starts_with?: String;
  1847. name_ends_with?: String;
  1848. name_not_ends_with?: String;
  1849. description?: String;
  1850. description_not?: String;
  1851. description_in?: String[] | String;
  1852. description_not_in?: String[] | String;
  1853. description_lt?: String;
  1854. description_lte?: String;
  1855. description_gt?: String;
  1856. description_gte?: String;
  1857. description_contains?: String;
  1858. description_not_contains?: String;
  1859. description_starts_with?: String;
  1860. description_not_starts_with?: String;
  1861. description_ends_with?: String;
  1862. description_not_ends_with?: String;
  1863. instrument?: InstrumentWhereInput;
  1864. readString?: String;
  1865. readString_not?: String;
  1866. readString_in?: String[] | String;
  1867. readString_not_in?: String[] | String;
  1868. readString_lt?: String;
  1869. readString_lte?: String;
  1870. readString_gt?: String;
  1871. readString_gte?: String;
  1872. readString_contains?: String;
  1873. readString_not_contains?: String;
  1874. readString_starts_with?: String;
  1875. readString_not_starts_with?: String;
  1876. readString_ends_with?: String;
  1877. readString_not_ends_with?: String;
  1878. writeString?: String;
  1879. writeString_not?: String;
  1880. writeString_in?: String[] | String;
  1881. writeString_not_in?: String[] | String;
  1882. writeString_lt?: String;
  1883. writeString_lte?: String;
  1884. writeString_gt?: String;
  1885. writeString_gte?: String;
  1886. writeString_contains?: String;
  1887. writeString_not_contains?: String;
  1888. writeString_starts_with?: String;
  1889. writeString_not_starts_with?: String;
  1890. writeString_ends_with?: String;
  1891. writeString_not_ends_with?: String;
  1892. parameters_every?: InstrumentParameterWhereInput;
  1893. parameters_some?: InstrumentParameterWhereInput;
  1894. parameters_none?: InstrumentParameterWhereInput;
  1895. AND?: InstrumentCommandWhereInput[] | InstrumentCommandWhereInput;
  1896. OR?: InstrumentCommandWhereInput[] | InstrumentCommandWhereInput;
  1897. NOT?: InstrumentCommandWhereInput[] | InstrumentCommandWhereInput;
  1898. }
  1899. export interface InstrumentParameterWhereInput {
  1900. id?: ID_Input;
  1901. id_not?: ID_Input;
  1902. id_in?: ID_Input[] | ID_Input;
  1903. id_not_in?: ID_Input[] | ID_Input;
  1904. id_lt?: ID_Input;
  1905. id_lte?: ID_Input;
  1906. id_gt?: ID_Input;
  1907. id_gte?: ID_Input;
  1908. id_contains?: ID_Input;
  1909. id_not_contains?: ID_Input;
  1910. id_starts_with?: ID_Input;
  1911. id_not_starts_with?: ID_Input;
  1912. id_ends_with?: ID_Input;
  1913. id_not_ends_with?: ID_Input;
  1914. tag?: String;
  1915. tag_not?: String;
  1916. tag_in?: String[] | String;
  1917. tag_not_in?: String[] | String;
  1918. tag_lt?: String;
  1919. tag_lte?: String;
  1920. tag_gt?: String;
  1921. tag_gte?: String;
  1922. tag_contains?: String;
  1923. tag_not_contains?: String;
  1924. tag_starts_with?: String;
  1925. tag_not_starts_with?: String;
  1926. tag_ends_with?: String;
  1927. tag_not_ends_with?: String;
  1928. name?: String;
  1929. name_not?: String;
  1930. name_in?: String[] | String;
  1931. name_not_in?: String[] | String;
  1932. name_lt?: String;
  1933. name_lte?: String;
  1934. name_gt?: String;
  1935. name_gte?: String;
  1936. name_contains?: String;
  1937. name_not_contains?: String;
  1938. name_starts_with?: String;
  1939. name_not_starts_with?: String;
  1940. name_ends_with?: String;
  1941. name_not_ends_with?: String;
  1942. description?: String;
  1943. description_not?: String;
  1944. description_in?: String[] | String;
  1945. description_not_in?: String[] | String;
  1946. description_lt?: String;
  1947. description_lte?: String;
  1948. description_gt?: String;
  1949. description_gte?: String;
  1950. description_contains?: String;
  1951. description_not_contains?: String;
  1952. description_starts_with?: String;
  1953. description_not_starts_with?: String;
  1954. description_ends_with?: String;
  1955. description_not_ends_with?: String;
  1956. type?: String;
  1957. type_not?: String;
  1958. type_in?: String[] | String;
  1959. type_not_in?: String[] | String;
  1960. type_lt?: String;
  1961. type_lte?: String;
  1962. type_gt?: String;
  1963. type_gte?: String;
  1964. type_contains?: String;
  1965. type_not_contains?: String;
  1966. type_starts_with?: String;
  1967. type_not_starts_with?: String;
  1968. type_ends_with?: String;
  1969. type_not_ends_with?: String;
  1970. values?: String;
  1971. values_not?: String;
  1972. values_in?: String[] | String;
  1973. values_not_in?: String[] | String;
  1974. values_lt?: String;
  1975. values_lte?: String;
  1976. values_gt?: String;
  1977. values_gte?: String;
  1978. values_contains?: String;
  1979. values_not_contains?: String;
  1980. values_starts_with?: String;
  1981. values_not_starts_with?: String;
  1982. values_ends_with?: String;
  1983. values_not_ends_with?: String;
  1984. AND?: InstrumentParameterWhereInput[] | InstrumentParameterWhereInput;
  1985. OR?: InstrumentParameterWhereInput[] | InstrumentParameterWhereInput;
  1986. NOT?: InstrumentParameterWhereInput[] | InstrumentParameterWhereInput;
  1987. }
  1988. export interface InstrumentSubsystemWhereInput {
  1989. id?: ID_Input;
  1990. id_not?: ID_Input;
  1991. id_in?: ID_Input[] | ID_Input;
  1992. id_not_in?: ID_Input[] | ID_Input;
  1993. id_lt?: ID_Input;
  1994. id_lte?: ID_Input;
  1995. id_gt?: ID_Input;
  1996. id_gte?: ID_Input;
  1997. id_contains?: ID_Input;
  1998. id_not_contains?: ID_Input;
  1999. id_starts_with?: ID_Input;
  2000. id_not_starts_with?: ID_Input;
  2001. id_ends_with?: ID_Input;
  2002. id_not_ends_with?: ID_Input;
  2003. name?: String;
  2004. name_not?: String;
  2005. name_in?: String[] | String;
  2006. name_not_in?: String[] | String;
  2007. name_lt?: String;
  2008. name_lte?: String;
  2009. name_gt?: String;
  2010. name_gte?: String;
  2011. name_contains?: String;
  2012. name_not_contains?: String;
  2013. name_starts_with?: String;
  2014. name_not_starts_with?: String;
  2015. name_ends_with?: String;
  2016. name_not_ends_with?: String;
  2017. description?: String;
  2018. description_not?: String;
  2019. description_in?: String[] | String;
  2020. description_not_in?: String[] | String;
  2021. description_lt?: String;
  2022. description_lte?: String;
  2023. description_gt?: String;
  2024. description_gte?: String;
  2025. description_contains?: String;
  2026. description_not_contains?: String;
  2027. description_starts_with?: String;
  2028. description_not_starts_with?: String;
  2029. description_ends_with?: String;
  2030. description_not_ends_with?: String;
  2031. commands_every?: InstrumentCommandWhereInput;
  2032. commands_some?: InstrumentCommandWhereInput;
  2033. commands_none?: InstrumentCommandWhereInput;
  2034. parameters_every?: InstrumentParameterWhereInput;
  2035. parameters_some?: InstrumentParameterWhereInput;
  2036. parameters_none?: InstrumentParameterWhereInput;
  2037. subsystems_every?: InstrumentSubsystemWhereInput;
  2038. subsystems_some?: InstrumentSubsystemWhereInput;
  2039. subsystems_none?: InstrumentSubsystemWhereInput;
  2040. AND?: InstrumentSubsystemWhereInput[] | InstrumentSubsystemWhereInput;
  2041. OR?: InstrumentSubsystemWhereInput[] | InstrumentSubsystemWhereInput;
  2042. NOT?: InstrumentSubsystemWhereInput[] | InstrumentSubsystemWhereInput;
  2043. }
  2044. export interface CharacterizationWhereInput {
  2045. id?: ID_Input;
  2046. id_not?: ID_Input;
  2047. id_in?: ID_Input[] | ID_Input;
  2048. id_not_in?: ID_Input[] | ID_Input;
  2049. id_lt?: ID_Input;
  2050. id_lte?: ID_Input;
  2051. id_gt?: ID_Input;
  2052. id_gte?: ID_Input;
  2053. id_contains?: ID_Input;
  2054. id_not_contains?: ID_Input;
  2055. id_starts_with?: ID_Input;
  2056. id_not_starts_with?: ID_Input;
  2057. id_ends_with?: ID_Input;
  2058. id_not_ends_with?: ID_Input;
  2059. project?: ProjectWhereInput;
  2060. measurementRuns_every?: MeasurementRunWhereInput;
  2061. measurementRuns_some?: MeasurementRunWhereInput;
  2062. measurementRuns_none?: MeasurementRunWhereInput;
  2063. AND?: CharacterizationWhereInput[] | CharacterizationWhereInput;
  2064. OR?: CharacterizationWhereInput[] | CharacterizationWhereInput;
  2065. NOT?: CharacterizationWhereInput[] | CharacterizationWhereInput;
  2066. }
  2067. export interface ProjectWhereInput {
  2068. id?: ID_Input;
  2069. id_not?: ID_Input;
  2070. id_in?: ID_Input[] | ID_Input;
  2071. id_not_in?: ID_Input[] | ID_Input;
  2072. id_lt?: ID_Input;
  2073. id_lte?: ID_Input;
  2074. id_gt?: ID_Input;
  2075. id_gte?: ID_Input;
  2076. id_contains?: ID_Input;
  2077. id_not_contains?: ID_Input;
  2078. id_starts_with?: ID_Input;
  2079. id_not_starts_with?: ID_Input;
  2080. id_ends_with?: ID_Input;
  2081. id_not_ends_with?: ID_Input;
  2082. name?: String;
  2083. name_not?: String;
  2084. name_in?: String[] | String;
  2085. name_not_in?: String[] | String;
  2086. name_lt?: String;
  2087. name_lte?: String;
  2088. name_gt?: String;
  2089. name_gte?: String;
  2090. name_contains?: String;
  2091. name_not_contains?: String;
  2092. name_starts_with?: String;
  2093. name_not_starts_with?: String;
  2094. name_ends_with?: String;
  2095. name_not_ends_with?: String;
  2096. abbreviation?: String;
  2097. abbreviation_not?: String;
  2098. abbreviation_in?: String[] | String;
  2099. abbreviation_not_in?: String[] | String;
  2100. abbreviation_lt?: String;
  2101. abbreviation_lte?: String;
  2102. abbreviation_gt?: String;
  2103. abbreviation_gte?: String;
  2104. abbreviation_contains?: String;
  2105. abbreviation_not_contains?: String;
  2106. abbreviation_starts_with?: String;
  2107. abbreviation_not_starts_with?: String;
  2108. abbreviation_ends_with?: String;
  2109. abbreviation_not_ends_with?: String;
  2110. description?: String;
  2111. description_not?: String;
  2112. description_in?: String[] | String;
  2113. description_not_in?: String[] | String;
  2114. description_lt?: String;
  2115. description_lte?: String;
  2116. description_gt?: String;
  2117. description_gte?: String;
  2118. description_contains?: String;
  2119. description_not_contains?: String;
  2120. description_starts_with?: String;
  2121. description_not_starts_with?: String;
  2122. description_ends_with?: String;
  2123. description_not_ends_with?: String;
  2124. images_every?: FileWhereInput;
  2125. images_some?: FileWhereInput;
  2126. images_none?: FileWhereInput;
  2127. AND?: ProjectWhereInput[] | ProjectWhereInput;
  2128. OR?: ProjectWhereInput[] | ProjectWhereInput;
  2129. NOT?: ProjectWhereInput[] | ProjectWhereInput;
  2130. }
  2131. export type CommentWhereUniqueInput = AtLeastOne<{
  2132. id: ID_Input;
  2133. }>;
  2134. export type DUTWhereUniqueInput = AtLeastOne<{
  2135. id: ID_Input;
  2136. }>;
  2137. export interface DUTWhereInput {
  2138. id?: ID_Input;
  2139. id_not?: ID_Input;
  2140. id_in?: ID_Input[] | ID_Input;
  2141. id_not_in?: ID_Input[] | ID_Input;
  2142. id_lt?: ID_Input;
  2143. id_lte?: ID_Input;
  2144. id_gt?: ID_Input;
  2145. id_gte?: ID_Input;
  2146. id_contains?: ID_Input;
  2147. id_not_contains?: ID_Input;
  2148. id_starts_with?: ID_Input;
  2149. id_not_starts_with?: ID_Input;
  2150. id_ends_with?: ID_Input;
  2151. id_not_ends_with?: ID_Input;
  2152. name?: String;
  2153. name_not?: String;
  2154. name_in?: String[] | String;
  2155. name_not_in?: String[] | String;
  2156. name_lt?: String;
  2157. name_lte?: String;
  2158. name_gt?: String;
  2159. name_gte?: String;
  2160. name_contains?: String;
  2161. name_not_contains?: String;
  2162. name_starts_with?: String;
  2163. name_not_starts_with?: String;
  2164. name_ends_with?: String;
  2165. name_not_ends_with?: String;
  2166. description?: String;
  2167. description_not?: String;
  2168. description_in?: String[] | String;
  2169. description_not_in?: String[] | String;
  2170. description_lt?: String;
  2171. description_lte?: String;
  2172. description_gt?: String;
  2173. description_gte?: String;
  2174. description_contains?: String;
  2175. description_not_contains?: String;
  2176. description_starts_with?: String;
  2177. description_not_starts_with?: String;
  2178. description_ends_with?: String;
  2179. description_not_ends_with?: String;
  2180. project?: ProjectVersionWhereInput;
  2181. AND?: DUTWhereInput[] | DUTWhereInput;
  2182. OR?: DUTWhereInput[] | DUTWhereInput;
  2183. NOT?: DUTWhereInput[] | DUTWhereInput;
  2184. }
  2185. export interface ProjectVersionWhereInput {
  2186. id?: ID_Input;
  2187. id_not?: ID_Input;
  2188. id_in?: ID_Input[] | ID_Input;
  2189. id_not_in?: ID_Input[] | ID_Input;
  2190. id_lt?: ID_Input;
  2191. id_lte?: ID_Input;
  2192. id_gt?: ID_Input;
  2193. id_gte?: ID_Input;
  2194. id_contains?: ID_Input;
  2195. id_not_contains?: ID_Input;
  2196. id_starts_with?: ID_Input;
  2197. id_not_starts_with?: ID_Input;
  2198. id_ends_with?: ID_Input;
  2199. id_not_ends_with?: ID_Input;
  2200. name?: String;
  2201. name_not?: String;
  2202. name_in?: String[] | String;
  2203. name_not_in?: String[] | String;
  2204. name_lt?: String;
  2205. name_lte?: String;
  2206. name_gt?: String;
  2207. name_gte?: String;
  2208. name_contains?: String;
  2209. name_not_contains?: String;
  2210. name_starts_with?: String;
  2211. name_not_starts_with?: String;
  2212. name_ends_with?: String;
  2213. name_not_ends_with?: String;
  2214. changes?: String;
  2215. changes_not?: String;
  2216. changes_in?: String[] | String;
  2217. changes_not_in?: String[] | String;
  2218. changes_lt?: String;
  2219. changes_lte?: String;
  2220. changes_gt?: String;
  2221. changes_gte?: String;
  2222. changes_contains?: String;
  2223. changes_not_contains?: String;
  2224. changes_starts_with?: String;
  2225. changes_not_starts_with?: String;
  2226. changes_ends_with?: String;
  2227. changes_not_ends_with?: String;
  2228. date?: DateTimeInput;
  2229. date_not?: DateTimeInput;
  2230. date_in?: DateTimeInput[] | DateTimeInput;
  2231. date_not_in?: DateTimeInput[] | DateTimeInput;
  2232. date_lt?: DateTimeInput;
  2233. date_lte?: DateTimeInput;
  2234. date_gt?: DateTimeInput;
  2235. date_gte?: DateTimeInput;
  2236. AND?: ProjectVersionWhereInput[] | ProjectVersionWhereInput;
  2237. OR?: ProjectVersionWhereInput[] | ProjectVersionWhereInput;
  2238. NOT?: ProjectVersionWhereInput[] | ProjectVersionWhereInput;
  2239. }
  2240. export type EventWhereUniqueInput = AtLeastOne<{
  2241. id: ID_Input;
  2242. }>;
  2243. export type FileWhereUniqueInput = AtLeastOne<{
  2244. id: ID_Input;
  2245. }>;
  2246. export type InstrumentWhereUniqueInput = AtLeastOne<{
  2247. id: ID_Input;
  2248. }>;
  2249. export type InstrumentCommandWhereUniqueInput = AtLeastOne<{
  2250. id: ID_Input;
  2251. }>;
  2252. export type InstrumentInstanceWhereUniqueInput = AtLeastOne<{
  2253. id: ID_Input;
  2254. }>;
  2255. export type InstrumentParameterWhereUniqueInput = AtLeastOne<{
  2256. id: ID_Input;
  2257. }>;
  2258. export type InstrumentSubsystemWhereUniqueInput = AtLeastOne<{
  2259. id: ID_Input;
  2260. }>;
  2261. export type MeasurementWhereUniqueInput = AtLeastOne<{
  2262. id: ID_Input;
  2263. }>;
  2264. export type MeasurementRunWhereUniqueInput = AtLeastOne<{
  2265. id: ID_Input;
  2266. }>;
  2267. export type ProjectWhereUniqueInput = AtLeastOne<{
  2268. id: ID_Input;
  2269. name?: String;
  2270. abbreviation?: String;
  2271. }>;
  2272. export type ProjectVersionWhereUniqueInput = AtLeastOne<{
  2273. id: ID_Input;
  2274. name?: String;
  2275. }>;
  2276. export type SetupWhereUniqueInput = AtLeastOne<{
  2277. id: ID_Input;
  2278. }>;
  2279. export type SetupHardwareWhereUniqueInput = AtLeastOne<{
  2280. id: ID_Input;
  2281. }>;
  2282. export type SetupHardwareInstanceWhereUniqueInput = AtLeastOne<{
  2283. id: ID_Input;
  2284. }>;
  2285. export type UserWhereUniqueInput = AtLeastOne<{
  2286. id: ID_Input;
  2287. email?: String;
  2288. }>;
  2289. export interface CharacterizationCreateInput {
  2290. project: ProjectCreateOneInput;
  2291. measurementRuns?: MeasurementRunCreateManyInput;
  2292. }
  2293. export interface ProjectCreateOneInput {
  2294. create?: ProjectCreateInput;
  2295. connect?: ProjectWhereUniqueInput;
  2296. }
  2297. export interface ProjectCreateInput {
  2298. name: String;
  2299. abbreviation: String;
  2300. description?: String;
  2301. images?: FileCreateManyInput;
  2302. }
  2303. export interface FileCreateManyInput {
  2304. create?: FileCreateInput[] | FileCreateInput;
  2305. connect?: FileWhereUniqueInput[] | FileWhereUniqueInput;
  2306. }
  2307. export interface FileCreateInput {
  2308. filename: String;
  2309. mimetype: String;
  2310. truncated: Boolean;
  2311. size: Int;
  2312. md5: String;
  2313. }
  2314. export interface MeasurementRunCreateManyInput {
  2315. create?: MeasurementRunCreateInput[] | MeasurementRunCreateInput;
  2316. connect?: MeasurementRunWhereUniqueInput[] | MeasurementRunWhereUniqueInput;
  2317. }
  2318. export interface MeasurementRunCreateInput {
  2319. operator?: UserCreateManyInput;
  2320. location: String;
  2321. temperature?: Float;
  2322. startTime: DateTimeInput;
  2323. endTime: DateTimeInput;
  2324. timeline?: EventCreateManyInput;
  2325. comments?: CommentCreateManyInput;
  2326. measurements?: MeasurementCreateManyInput;
  2327. setup: SetupCreateOneInput;
  2328. }
  2329. export interface UserCreateManyInput {
  2330. create?: UserCreateInput[] | UserCreateInput;
  2331. connect?: UserWhereUniqueInput[] | UserWhereUniqueInput;
  2332. }
  2333. export interface UserCreateInput {
  2334. email: String;
  2335. name: String;
  2336. abbreviation: String;
  2337. password: String;
  2338. images?: FileCreateManyInput;
  2339. }
  2340. export interface EventCreateManyInput {
  2341. create?: EventCreateInput[] | EventCreateInput;
  2342. connect?: EventWhereUniqueInput[] | EventWhereUniqueInput;
  2343. }
  2344. export interface EventCreateInput {
  2345. type: String;
  2346. when: DateTimeInput;
  2347. }
  2348. export interface CommentCreateManyInput {
  2349. create?: CommentCreateInput[] | CommentCreateInput;
  2350. connect?: CommentWhereUniqueInput[] | CommentWhereUniqueInput;
  2351. }
  2352. export interface CommentCreateInput {
  2353. text?: String;
  2354. previousVersion?: CommentCreateOneInput;
  2355. }
  2356. export interface CommentCreateOneInput {
  2357. create?: CommentCreateInput;
  2358. connect?: CommentWhereUniqueInput;
  2359. }
  2360. export interface MeasurementCreateManyInput {
  2361. create?: MeasurementCreateInput[] | MeasurementCreateInput;
  2362. connect?: MeasurementWhereUniqueInput[] | MeasurementWhereUniqueInput;
  2363. }
  2364. export interface MeasurementCreateInput {
  2365. intValue?: Int;
  2366. floatValue?: Float;
  2367. stringValue?: String;
  2368. }
  2369. export interface SetupCreateOneInput {
  2370. create?: SetupCreateInput;
  2371. connect?: SetupWhereUniqueInput;
  2372. }
  2373. export interface SetupCreateInput {
  2374. name: String;
  2375. description: String;
  2376. images?: FileCreateManyInput;
  2377. comments?: CommentCreateManyInput;
  2378. setupHardware?: SetupHardwareInstanceCreateManyInput;
  2379. instruments?: InstrumentInstanceCreateManyInput;
  2380. }
  2381. export interface SetupHardwareInstanceCreateManyInput {
  2382. create?:
  2383. | SetupHardwareInstanceCreateInput[]
  2384. | SetupHardwareInstanceCreateInput;
  2385. connect?:
  2386. | SetupHardwareInstanceWhereUniqueInput[]
  2387. | SetupHardwareInstanceWhereUniqueInput;
  2388. }
  2389. export interface SetupHardwareInstanceCreateInput {
  2390. setupHardware: SetupHardwareCreateOneInput;
  2391. identifier: String;
  2392. images?: FileCreateManyInput;
  2393. }
  2394. export interface SetupHardwareCreateOneInput {
  2395. create?: SetupHardwareCreateInput;
  2396. connect?: SetupHardwareWhereUniqueInput;
  2397. }
  2398. export interface SetupHardwareCreateInput {
  2399. name: String;
  2400. description?: String;
  2401. images?: FileCreateManyInput;
  2402. }
  2403. export interface InstrumentInstanceCreateManyInput {
  2404. create?: InstrumentInstanceCreateInput[] | InstrumentInstanceCreateInput;
  2405. connect?:
  2406. | InstrumentInstanceWhereUniqueInput[]
  2407. | InstrumentInstanceWhereUniqueInput;
  2408. }
  2409. export interface InstrumentInstanceCreateInput {
  2410. instrument: InstrumentCreateOneInput;
  2411. identifier: String;
  2412. interface?: InstrumentInstanceCreateinterfaceInput;
  2413. label?: String;
  2414. location?: String;
  2415. }
  2416. export interface InstrumentCreateOneInput {
  2417. create?: InstrumentCreateInput;
  2418. connect?: InstrumentWhereUniqueInput;
  2419. }
  2420. export interface InstrumentCreateInput {
  2421. name: String;
  2422. description?: String;
  2423. documents?: FileCreateManyInput;
  2424. interfaces?: InstrumentCreateinterfacesInput;
  2425. commands?: InstrumentCommandCreateManyWithoutInstrumentInput;
  2426. parameters?: InstrumentParameterCreateManyInput;
  2427. subsystems?: InstrumentSubsystemCreateManyInput;
  2428. }
  2429. export interface InstrumentCreateinterfacesInput {
  2430. set?: String[] | String;
  2431. }
  2432. export interface InstrumentCommandCreateManyWithoutInstrumentInput {
  2433. create?:
  2434. | InstrumentCommandCreateWithoutInstrumentInput[]
  2435. | InstrumentCommandCreateWithoutInstrumentInput;
  2436. connect?:
  2437. | InstrumentCommandWhereUniqueInput[]
  2438. | InstrumentCommandWhereUniqueInput;
  2439. }
  2440. export interface InstrumentCommandCreateWithoutInstrumentInput {
  2441. tag: String;
  2442. name?: String;
  2443. description: String;
  2444. readString?: String;
  2445. writeString?: String;
  2446. parameters?: InstrumentParameterCreateManyInput;
  2447. }
  2448. export interface InstrumentParameterCreateManyInput {
  2449. create?: InstrumentParameterCreateInput[] | InstrumentParameterCreateInput;
  2450. connect?:
  2451. | InstrumentParameterWhereUniqueInput[]
  2452. | InstrumentParameterWhereUniqueInput;
  2453. }
  2454. export interface InstrumentParameterCreateInput {
  2455. tag: String;
  2456. name?: String;
  2457. description?: String;
  2458. type: String;
  2459. values?: String;
  2460. }
  2461. export interface InstrumentSubsystemCreateManyInput {
  2462. create?: InstrumentSubsystemCreateInput[] | InstrumentSubsystemCreateInput;
  2463. connect?:
  2464. | InstrumentSubsystemWhereUniqueInput[]
  2465. | InstrumentSubsystemWhereUniqueInput;
  2466. }
  2467. export interface InstrumentSubsystemCreateInput {
  2468. name?: String;
  2469. description: String;
  2470. commands?: InstrumentCommandCreateManyInput;
  2471. parameters?: InstrumentParameterCreateManyInput;
  2472. subsystems?: InstrumentSubsystemCreateManyInput;
  2473. }
  2474. export interface InstrumentCommandCreateManyInput {
  2475. create?: InstrumentCommandCreateInput[] | InstrumentCommandCreateInput;
  2476. connect?:
  2477. | InstrumentCommandWhereUniqueInput[]
  2478. | InstrumentCommandWhereUniqueInput;
  2479. }
  2480. export interface InstrumentCommandCreateInput {
  2481. tag: String;
  2482. name?: String;
  2483. description: String;
  2484. instrument: InstrumentCreateOneWithoutCommandsInput;
  2485. readString?: String;
  2486. writeString?: String;
  2487. parameters?: InstrumentParameterCreateManyInput;
  2488. }
  2489. export interface InstrumentCreateOneWithoutCommandsInput {
  2490. create?: InstrumentCreateWithoutCommandsInput;
  2491. connect?: InstrumentWhereUniqueInput;
  2492. }
  2493. export interface InstrumentCreateWithoutCommandsInput {
  2494. name: String;
  2495. description?: String;
  2496. documents?: FileCreateManyInput;
  2497. interfaces?: InstrumentCreateinterfacesInput;
  2498. parameters?: InstrumentParameterCreateManyInput;
  2499. subsystems?: InstrumentSubsystemCreateManyInput;
  2500. }
  2501. export interface InstrumentInstanceCreateinterfaceInput {
  2502. set?: String[] | String;
  2503. }
  2504. export interface CharacterizationUpdateInput {
  2505. project?: ProjectUpdateOneRequiredInput;
  2506. measurementRuns?: MeasurementRunUpdateManyInput;
  2507. }
  2508. export interface ProjectUpdateOneRequiredInput {
  2509. create?: ProjectCreateInput;
  2510. update?: ProjectUpdateDataInput;
  2511. upsert?: ProjectUpsertNestedInput;
  2512. connect?: ProjectWhereUniqueInput;
  2513. }
  2514. export interface ProjectUpdateDataInput {
  2515. name?: String;
  2516. abbreviation?: String;
  2517. description?: String;
  2518. images?: FileUpdateManyInput;
  2519. }
  2520. export interface FileUpdateManyInput {
  2521. create?: FileCreateInput[] | FileCreateInput;
  2522. update?:
  2523. | FileUpdateWithWhereUniqueNestedInput[]
  2524. | FileUpdateWithWhereUniqueNestedInput;
  2525. upsert?:
  2526. | FileUpsertWithWhereUniqueNestedInput[]
  2527. | FileUpsertWithWhereUniqueNestedInput;
  2528. delete?: FileWhereUniqueInput[] | FileWhereUniqueInput;
  2529. connect?: FileWhereUniqueInput[] | FileWhereUniqueInput;
  2530. set?: FileWhereUniqueInput[] | FileWhereUniqueInput;
  2531. disconnect?: FileWhereUniqueInput[] | FileWhereUniqueInput;
  2532. deleteMany?: FileScalarWhereInput[] | FileScalarWhereInput;
  2533. updateMany?:
  2534. | FileUpdateManyWithWhereNestedInput[]
  2535. | FileUpdateManyWithWhereNestedInput;
  2536. }
  2537. export interface FileUpdateWithWhereUniqueNestedInput {
  2538. where: FileWhereUniqueInput;
  2539. data: FileUpdateDataInput;
  2540. }
  2541. export interface FileUpdateDataInput {
  2542. filename?: String;
  2543. mimetype?: String;
  2544. truncated?: Boolean;
  2545. size?: Int;
  2546. md5?: String;
  2547. }
  2548. export interface FileUpsertWithWhereUniqueNestedInput {
  2549. where: FileWhereUniqueInput;
  2550. update: FileUpdateDataInput;
  2551. create: FileCreateInput;
  2552. }
  2553. export interface FileScalarWhereInput {
  2554. id?: ID_Input;
  2555. id_not?: ID_Input;
  2556. id_in?: ID_Input[] | ID_Input;
  2557. id_not_in?: ID_Input[] | ID_Input;
  2558. id_lt?: ID_Input;
  2559. id_lte?: ID_Input;
  2560. id_gt?: ID_Input;
  2561. id_gte?: ID_Input;
  2562. id_contains?: ID_Input;
  2563. id_not_contains?: ID_Input;
  2564. id_starts_with?: ID_Input;
  2565. id_not_starts_with?: ID_Input;
  2566. id_ends_with?: ID_Input;
  2567. id_not_ends_with?: ID_Input;
  2568. filename?: String;
  2569. filename_not?: String;
  2570. filename_in?: String[] | String;
  2571. filename_not_in?: String[] | String;
  2572. filename_lt?: String;
  2573. filename_lte?: String;
  2574. filename_gt?: String;
  2575. filename_gte?: String;
  2576. filename_contains?: String;
  2577. filename_not_contains?: String;
  2578. filename_starts_with?: String;
  2579. filename_not_starts_with?: String;
  2580. filename_ends_with?: String;
  2581. filename_not_ends_with?: String;
  2582. mimetype?: String;
  2583. mimetype_not?: String;
  2584. mimetype_in?: String[] | String;
  2585. mimetype_not_in?: String[] | String;
  2586. mimetype_lt?: String;
  2587. mimetype_lte?: String;
  2588. mimetype_gt?: String;
  2589. mimetype_gte?: String;
  2590. mimetype_contains?: String;
  2591. mimetype_not_contains?: String;
  2592. mimetype_starts_with?: String;
  2593. mimetype_not_starts_with?: String;
  2594. mimetype_ends_with?: String;
  2595. mimetype_not_ends_with?: String;
  2596. truncated?: Boolean;
  2597. truncated_not?: Boolean;
  2598. size?: Int;
  2599. size_not?: Int;
  2600. size_in?: Int[] | Int;
  2601. size_not_in?: Int[] | Int;
  2602. size_lt?: Int;
  2603. size_lte?: Int;
  2604. size_gt?: Int;
  2605. size_gte?: Int;
  2606. md5?: String;
  2607. md5_not?: String;
  2608. md5_in?: String[] | String;
  2609. md5_not_in?: String[] | String;
  2610. md5_lt?: String;
  2611. md5_lte?: String;
  2612. md5_gt?: String;
  2613. md5_gte?: String;
  2614. md5_contains?: String;
  2615. md5_not_contains?: String;
  2616. md5_starts_with?: String;
  2617. md5_not_starts_with?: String;
  2618. md5_ends_with?: String;
  2619. md5_not_ends_with?: String;
  2620. AND?: FileScalarWhereInput[] | FileScalarWhereInput;
  2621. OR?: FileScalarWhereInput[] | FileScalarWhereInput;
  2622. NOT?: FileScalarWhereInput[] | FileScalarWhereInput;
  2623. }
  2624. export interface FileUpdateManyWithWhereNestedInput {
  2625. where: FileScalarWhereInput;
  2626. data: FileUpdateManyDataInput;
  2627. }
  2628. export interface FileUpdateManyDataInput {
  2629. filename?: String;
  2630. mimetype?: String;
  2631. truncated?: Boolean;
  2632. size?: Int;
  2633. md5?: String;
  2634. }
  2635. export interface ProjectUpsertNestedInput {
  2636. update: ProjectUpdateDataInput;
  2637. create: ProjectCreateInput;
  2638. }
  2639. export interface MeasurementRunUpdateManyInput {
  2640. create?: MeasurementRunCreateInput[] | MeasurementRunCreateInput;
  2641. update?:
  2642. | MeasurementRunUpdateWithWhereUniqueNestedInput[]
  2643. | MeasurementRunUpdateWithWhereUniqueNestedInput;
  2644. upsert?:
  2645. | MeasurementRunUpsertWithWhereUniqueNestedInput[]
  2646. | MeasurementRunUpsertWithWhereUniqueNestedInput;
  2647. delete?: MeasurementRunWhereUniqueInput[] | MeasurementRunWhereUniqueInput;
  2648. connect?: MeasurementRunWhereUniqueInput[] | MeasurementRunWhereUniqueInput;
  2649. set?: MeasurementRunWhereUniqueInput[] | MeasurementRunWhereUniqueInput;
  2650. disconnect?:
  2651. | MeasurementRunWhereUniqueInput[]
  2652. | MeasurementRunWhereUniqueInput;
  2653. deleteMany?:
  2654. | MeasurementRunScalarWhereInput[]
  2655. | MeasurementRunScalarWhereInput;
  2656. updateMany?:
  2657. | MeasurementRunUpdateManyWithWhereNestedInput[]
  2658. | MeasurementRunUpdateManyWithWhereNestedInput;
  2659. }
  2660. export interface MeasurementRunUpdateWithWhereUniqueNestedInput {
  2661. where: MeasurementRunWhereUniqueInput;
  2662. data: MeasurementRunUpdateDataInput;
  2663. }
  2664. export interface MeasurementRunUpdateDataInput {
  2665. operator?: UserUpdateManyInput;
  2666. location?: String;
  2667. temperature?: Float;
  2668. startTime?: DateTimeInput;
  2669. endTime?: DateTimeInput;
  2670. timeline?: EventUpdateManyInput;
  2671. comments?: CommentUpdateManyInput;
  2672. measurements?: MeasurementUpdateManyInput;
  2673. setup?: SetupUpdateOneRequiredInput;
  2674. }
  2675. export interface UserUpdateManyInput {
  2676. create?: UserCreateInput[] | UserCreateInput;
  2677. update?:
  2678. | UserUpdateWithWhereUniqueNestedInput[]
  2679. | UserUpdateWithWhereUniqueNestedInput;
  2680. upsert?:
  2681. | UserUpsertWithWhereUniqueNestedInput[]
  2682. | UserUpsertWithWhereUniqueNestedInput;
  2683. delete?: UserWhereUniqueInput[] | UserWhereUniqueInput;
  2684. connect?: UserWhereUniqueInput[] | UserWhereUniqueInput;
  2685. set?: UserWhereUniqueInput[] | UserWhereUniqueInput;
  2686. disconnect?: UserWhereUniqueInput[] | UserWhereUniqueInput;
  2687. deleteMany?: UserScalarWhereInput[] | UserScalarWhereInput;
  2688. updateMany?:
  2689. | UserUpdateManyWithWhereNestedInput[]
  2690. | UserUpdateManyWithWhereNestedInput;
  2691. }
  2692. export interface UserUpdateWithWhereUniqueNestedInput {
  2693. where: UserWhereUniqueInput;
  2694. data: UserUpdateDataInput;
  2695. }
  2696. export interface UserUpdateDataInput {
  2697. email?: String;
  2698. name?: String;
  2699. abbreviation?: String;
  2700. password?: String;
  2701. images?: FileUpdateManyInput;
  2702. }
  2703. export interface UserUpsertWithWhereUniqueNestedInput {
  2704. where: UserWhereUniqueInput;
  2705. update: UserUpdateDataInput;
  2706. create: UserCreateInput;
  2707. }
  2708. export interface UserScalarWhereInput {
  2709. id?: ID_Input;
  2710. id_not?: ID_Input;
  2711. id_in?: ID_Input[] | ID_Input;
  2712. id_not_in?: ID_Input[] | ID_Input;
  2713. id_lt?: ID_Input;
  2714. id_lte?: ID_Input;
  2715. id_gt?: ID_Input;
  2716. id_gte?: ID_Input;
  2717. id_contains?: ID_Input;
  2718. id_not_contains?: ID_Input;
  2719. id_starts_with?: ID_Input;
  2720. id_not_starts_with?: ID_Input;
  2721. id_ends_with?: ID_Input;
  2722. id_not_ends_with?: ID_Input;
  2723. email?: String;
  2724. email_not?: String;
  2725. email_in?: String[] | String;
  2726. email_not_in?: String[] | String;
  2727. email_lt?: String;
  2728. email_lte?: String;
  2729. email_gt?: String;
  2730. email_gte?: String;
  2731. email_contains?: String;
  2732. email_not_contains?: String;
  2733. email_starts_with?: String;
  2734. email_not_starts_with?: String;
  2735. email_ends_with?: String;
  2736. email_not_ends_with?: String;
  2737. name?: String;
  2738. name_not?: String;
  2739. name_in?: String[] | String;
  2740. name_not_in?: String[] | String;
  2741. name_lt?: String;
  2742. name_lte?: String;
  2743. name_gt?: String;
  2744. name_gte?: String;
  2745. name_contains?: String;
  2746. name_not_contains?: String;
  2747. name_starts_with?: String;
  2748. name_not_starts_with?: String;
  2749. name_ends_with?: String;
  2750. name_not_ends_with?: String;
  2751. abbreviation?: String;
  2752. abbreviation_not?: String;
  2753. abbreviation_in?: String[] | String;
  2754. abbreviation_not_in?: String[] | String;
  2755. abbreviation_lt?: String;
  2756. abbreviation_lte?: String;
  2757. abbreviation_gt?: String;
  2758. abbreviation_gte?: String;
  2759. abbreviation_contains?: String;
  2760. abbreviation_not_contains?: String;
  2761. abbreviation_starts_with?: String;
  2762. abbreviation_not_starts_with?: String;
  2763. abbreviation_ends_with?: String;
  2764. abbreviation_not_ends_with?: String;
  2765. password?: String;
  2766. password_not?: String;
  2767. password_in?: String[] | String;
  2768. password_not_in?: String[] | String;
  2769. password_lt?: String;
  2770. password_lte?: String;
  2771. password_gt?: String;
  2772. password_gte?: String;
  2773. password_contains?: String;
  2774. password_not_contains?: String;
  2775. password_starts_with?: String;
  2776. password_not_starts_with?: String;
  2777. password_ends_with?: String;
  2778. password_not_ends_with?: String;
  2779. AND?: UserScalarWhereInput[] | UserScalarWhereInput;
  2780. OR?: UserScalarWhereInput[] | UserScalarWhereInput;
  2781. NOT?: UserScalarWhereInput[] | UserScalarWhereInput;
  2782. }
  2783. export interface UserUpdateManyWithWhereNestedInput {
  2784. where: UserScalarWhereInput;
  2785. data: UserUpdateManyDataInput;
  2786. }
  2787. export interface UserUpdateManyDataInput {
  2788. email?: String;
  2789. name?: String;
  2790. abbreviation?: String;
  2791. password?: String;
  2792. }
  2793. export interface EventUpdateManyInput {
  2794. create?: EventCreateInput[] | EventCreateInput;
  2795. update?:
  2796. | EventUpdateWithWhereUniqueNestedInput[]
  2797. | EventUpdateWithWhereUniqueNestedInput;
  2798. upsert?:
  2799. | EventUpsertWithWhereUniqueNestedInput[]
  2800. | EventUpsertWithWhereUniqueNestedInput;
  2801. delete?: EventWhereUniqueInput[] | EventWhereUniqueInput;
  2802. connect?: EventWhereUniqueInput[] | EventWhereUniqueInput;
  2803. set?: EventWhereUniqueInput[] | EventWhereUniqueInput;
  2804. disconnect?: EventWhereUniqueInput[] | EventWhereUniqueInput;
  2805. deleteMany?: EventScalarWhereInput[] | EventScalarWhereInput;
  2806. updateMany?:
  2807. | EventUpdateManyWithWhereNestedInput[]
  2808. | EventUpdateManyWithWhereNestedInput;
  2809. }
  2810. export interface EventUpdateWithWhereUniqueNestedInput {
  2811. where: EventWhereUniqueInput;
  2812. data: EventUpdateDataInput;
  2813. }
  2814. export interface EventUpdateDataInput {
  2815. type?: String;
  2816. when?: DateTimeInput;
  2817. }
  2818. export interface EventUpsertWithWhereUniqueNestedInput {
  2819. where: EventWhereUniqueInput;
  2820. update: EventUpdateDataInput;
  2821. create: EventCreateInput;
  2822. }
  2823. export interface EventScalarWhereInput {
  2824. id?: ID_Input;
  2825. id_not?: ID_Input;
  2826. id_in?: ID_Input[] | ID_Input;
  2827. id_not_in?: ID_Input[] | ID_Input;
  2828. id_lt?: ID_Input;
  2829. id_lte?: ID_Input;
  2830. id_gt?: ID_Input;
  2831. id_gte?: ID_Input;
  2832. id_contains?: ID_Input;
  2833. id_not_contains?: ID_Input;
  2834. id_starts_with?: ID_Input;
  2835. id_not_starts_with?: ID_Input;
  2836. id_ends_with?: ID_Input;
  2837. id_not_ends_with?: ID_Input;
  2838. type?: String;
  2839. type_not?: String;
  2840. type_in?: String[] | String;
  2841. type_not_in?: String[] | String;
  2842. type_lt?: String;
  2843. type_lte?: String;
  2844. type_gt?: String;
  2845. type_gte?: String;
  2846. type_contains?: String;
  2847. type_not_contains?: String;
  2848. type_starts_with?: String;
  2849. type_not_starts_with?: String;
  2850. type_ends_with?: String;
  2851. type_not_ends_with?: String;
  2852. when?: DateTimeInput;
  2853. when_not?: DateTimeInput;
  2854. when_in?: DateTimeInput[] | DateTimeInput;
  2855. when_not_in?: DateTimeInput[] | DateTimeInput;
  2856. when_lt?: DateTimeInput;
  2857. when_lte?: DateTimeInput;
  2858. when_gt?: DateTimeInput;
  2859. when_gte?: DateTimeInput;
  2860. AND?: EventScalarWhereInput[] | EventScalarWhereInput;
  2861. OR?: EventScalarWhereInput[] | EventScalarWhereInput;
  2862. NOT?: EventScalarWhereInput[] | EventScalarWhereInput;
  2863. }
  2864. export interface EventUpdateManyWithWhereNestedInput {
  2865. where: EventScalarWhereInput;
  2866. data: EventUpdateManyDataInput;
  2867. }
  2868. export interface EventUpdateManyDataInput {
  2869. type?: String;
  2870. when?: DateTimeInput;
  2871. }
  2872. export interface CommentUpdateManyInput {
  2873. create?: CommentCreateInput[] | CommentCreateInput;
  2874. update?:
  2875. | CommentUpdateWithWhereUniqueNestedInput[]
  2876. | CommentUpdateWithWhereUniqueNestedInput;
  2877. upsert?:
  2878. | CommentUpsertWithWhereUniqueNestedInput[]
  2879. | CommentUpsertWithWhereUniqueNestedInput;
  2880. delete?: CommentWhereUniqueInput[] | CommentWhereUniqueInput;
  2881. connect?: CommentWhereUniqueInput[] | CommentWhereUniqueInput;
  2882. set?: CommentWhereUniqueInput[] | CommentWhereUniqueInput;
  2883. disconnect?: CommentWhereUniqueInput[] | CommentWhereUniqueInput;
  2884. deleteMany?: CommentScalarWhereInput[] | CommentScalarWhereInput;
  2885. updateMany?:
  2886. | CommentUpdateManyWithWhereNestedInput[]
  2887. | CommentUpdateManyWithWhereNestedInput;
  2888. }
  2889. export interface CommentUpdateWithWhereUniqueNestedInput {
  2890. where: CommentWhereUniqueInput;
  2891. data: CommentUpdateDataInput;
  2892. }
  2893. export interface CommentUpdateDataInput {
  2894. text?: String;
  2895. previousVersion?: CommentUpdateOneInput;
  2896. }
  2897. export interface CommentUpdateOneInput {
  2898. create?: CommentCreateInput;
  2899. update?: CommentUpdateDataInput;
  2900. upsert?: CommentUpsertNestedInput;
  2901. delete?: Boolean;
  2902. disconnect?: Boolean;
  2903. connect?: CommentWhereUniqueInput;
  2904. }
  2905. export interface CommentUpsertNestedInput {
  2906. update: CommentUpdateDataInput;
  2907. create: CommentCreateInput;
  2908. }
  2909. export interface CommentUpsertWithWhereUniqueNestedInput {
  2910. where: CommentWhereUniqueInput;
  2911. update: CommentUpdateDataInput;
  2912. create: CommentCreateInput;
  2913. }
  2914. export interface CommentScalarWhereInput {
  2915. id?: ID_Input;
  2916. id_not?: ID_Input;
  2917. id_in?: ID_Input[] | ID_Input;
  2918. id_not_in?: ID_Input[] | ID_Input;
  2919. id_lt?: ID_Input;
  2920. id_lte?: ID_Input;
  2921. id_gt?: ID_Input;
  2922. id_gte?: ID_Input;
  2923. id_contains?: ID_Input;
  2924. id_not_contains?: ID_Input;
  2925. id_starts_with?: ID_Input;
  2926. id_not_starts_with?: ID_Input;
  2927. id_ends_with?: ID_Input;
  2928. id_not_ends_with?: ID_Input;
  2929. text?: String;
  2930. text_not?: String;
  2931. text_in?: String[] | String;
  2932. text_not_in?: String[] | String;
  2933. text_lt?: String;
  2934. text_lte?: String;
  2935. text_gt?: String;
  2936. text_gte?: String;
  2937. text_contains?: String;
  2938. text_not_contains?: String;
  2939. text_starts_with?: String;
  2940. text_not_starts_with?: String;
  2941. text_ends_with?: String;
  2942. text_not_ends_with?: String;
  2943. createdAt?: DateTimeInput;
  2944. createdAt_not?: DateTimeInput;
  2945. createdAt_in?: DateTimeInput[] | DateTimeInput;
  2946. createdAt_not_in?: DateTimeInput[] | DateTimeInput;
  2947. createdAt_lt?: DateTimeInput;
  2948. createdAt_lte?: DateTimeInput;
  2949. createdAt_gt?: DateTimeInput;
  2950. createdAt_gte?: DateTimeInput;
  2951. AND?: CommentScalarWhereInput[] | CommentScalarWhereInput;
  2952. OR?: CommentScalarWhereInput[] | CommentScalarWhereInput;
  2953. NOT?: CommentScalarWhereInput[] | CommentScalarWhereInput;
  2954. }
  2955. export interface CommentUpdateManyWithWhereNestedInput {
  2956. where: CommentScalarWhereInput;
  2957. data: CommentUpdateManyDataInput;
  2958. }
  2959. export interface CommentUpdateManyDataInput {
  2960. text?: String;
  2961. }
  2962. export interface MeasurementUpdateManyInput {
  2963. create?: MeasurementCreateInput[] | MeasurementCreateInput;
  2964. update?:
  2965. | MeasurementUpdateWithWhereUniqueNestedInput[]
  2966. | MeasurementUpdateWithWhereUniqueNestedInput;
  2967. upsert?:
  2968. | MeasurementUpsertWithWhereUniqueNestedInput[]
  2969. | MeasurementUpsertWithWhereUniqueNestedInput;
  2970. delete?: MeasurementWhereUniqueInput[] | MeasurementWhereUniqueInput;
  2971. connect?: MeasurementWhereUniqueInput[] | MeasurementWhereUniqueInput;
  2972. set?: MeasurementWhereUniqueInput[] | MeasurementWhereUniqueInput;
  2973. disconnect?: MeasurementWhereUniqueInput[] | MeasurementWhereUniqueInput;
  2974. deleteMany?: MeasurementScalarWhereInput[] | MeasurementScalarWhereInput;
  2975. updateMany?:
  2976. | MeasurementUpdateManyWithWhereNestedInput[]
  2977. | MeasurementUpdateManyWithWhereNestedInput;
  2978. }
  2979. export interface MeasurementUpdateWithWhereUniqueNestedInput {
  2980. where: MeasurementWhereUniqueInput;
  2981. data: MeasurementUpdateDataInput;
  2982. }
  2983. export interface MeasurementUpdateDataInput {
  2984. intValue?: Int;
  2985. floatValue?: Float;
  2986. stringValue?: String;
  2987. }
  2988. export interface MeasurementUpsertWithWhereUniqueNestedInput {
  2989. where: MeasurementWhereUniqueInput;
  2990. update: MeasurementUpdateDataInput;
  2991. create: MeasurementCreateInput;
  2992. }
  2993. export interface MeasurementScalarWhereInput {
  2994. id?: ID_Input;
  2995. id_not?: ID_Input;
  2996. id_in?: ID_Input[] | ID_Input;
  2997. id_not_in?: ID_Input[] | ID_Input;
  2998. id_lt?: ID_Input;
  2999. id_lte?: ID_Input;
  3000. id_gt?: ID_Input;
  3001. id_gte?: ID_Input;
  3002. id_contains?: ID_Input;
  3003. id_not_contains?: ID_Input;
  3004. id_starts_with?: ID_Input;
  3005. id_not_starts_with?: ID_Input;
  3006. id_ends_with?: ID_Input;
  3007. id_not_ends_with?: ID_Input;
  3008. createdAt?: DateTimeInput;
  3009. createdAt_not?: DateTimeInput;
  3010. createdAt_in?: DateTimeInput[] | DateTimeInput;
  3011. createdAt_not_in?: DateTimeInput[] | DateTimeInput;
  3012. createdAt_lt?: DateTimeInput;
  3013. createdAt_lte?: DateTimeInput;
  3014. createdAt_gt?: DateTimeInput;
  3015. createdAt_gte?: DateTimeInput;
  3016. intValue?: Int;
  3017. intValue_not?: Int;
  3018. intValue_in?: Int[] | Int;
  3019. intValue_not_in?: Int[] | Int;
  3020. intValue_lt?: Int;
  3021. intValue_lte?: Int;
  3022. intValue_gt?: Int;
  3023. intValue_gte?: Int;
  3024. floatValue?: Float;
  3025. floatValue_not?: Float;
  3026. floatValue_in?: Float[] | Float;
  3027. floatValue_not_in?: Float[] | Float;
  3028. floatValue_lt?: Float;
  3029. floatValue_lte?: Float;
  3030. floatValue_gt?: Float;
  3031. floatValue_gte?: Float;
  3032. stringValue?: String;
  3033. stringValue_not?: String;
  3034. stringValue_in?: String[] | String;
  3035. stringValue_not_in?: String[] | String;
  3036. stringValue_lt?: String;
  3037. stringValue_lte?: String;
  3038. stringValue_gt?: String;
  3039. stringValue_gte?: String;
  3040. stringValue_contains?: String;
  3041. stringValue_not_contains?: String;
  3042. stringValue_starts_with?: String;
  3043. stringValue_not_starts_with?: String;
  3044. stringValue_ends_with?: String;
  3045. stringValue_not_ends_with?: String;
  3046. AND?: MeasurementScalarWhereInput[] | MeasurementScalarWhereInput;
  3047. OR?: MeasurementScalarWhereInput[] | MeasurementScalarWhereInput;
  3048. NOT?: MeasurementScalarWhereInput[] | MeasurementScalarWhereInput;
  3049. }
  3050. export interface MeasurementUpdateManyWithWhereNestedInput {
  3051. where: MeasurementScalarWhereInput;
  3052. data: MeasurementUpdateManyDataInput;
  3053. }
  3054. export interface MeasurementUpdateManyDataInput {
  3055. intValue?: Int;
  3056. floatValue?: Float;
  3057. stringValue?: String;
  3058. }
  3059. export interface SetupUpdateOneRequiredInput {
  3060. create?: SetupCreateInput;
  3061. update?: SetupUpdateDataInput;
  3062. upsert?: SetupUpsertNestedInput;
  3063. connect?: SetupWhereUniqueInput;
  3064. }
  3065. export interface SetupUpdateDataInput {
  3066. name?: String;
  3067. description?: String;
  3068. images?: FileUpdateManyInput;
  3069. comments?: CommentUpdateManyInput;
  3070. setupHardware?: SetupHardwareInstanceUpdateManyInput;
  3071. instruments?: InstrumentInstanceUpdateManyInput;
  3072. }
  3073. export interface SetupHardwareInstanceUpdateManyInput {
  3074. create?:
  3075. | SetupHardwareInstanceCreateInput[]
  3076. | SetupHardwareInstanceCreateInput;
  3077. update?:
  3078. | SetupHardwareInstanceUpdateWithWhereUniqueNestedInput[]
  3079. | SetupHardwareInstanceUpdateWithWhereUniqueNestedInput;
  3080. upsert?:
  3081. | SetupHardwareInstanceUpsertWithWhereUniqueNestedInput[]
  3082. | SetupHardwareInstanceUpsertWithWhereUniqueNestedInput;
  3083. delete?:
  3084. | SetupHardwareInstanceWhereUniqueInput[]
  3085. | SetupHardwareInstanceWhereUniqueInput;
  3086. connect?:
  3087. | SetupHardwareInstanceWhereUniqueInput[]
  3088. | SetupHardwareInstanceWhereUniqueInput;
  3089. set?:
  3090. | SetupHardwareInstanceWhereUniqueInput[]
  3091. | SetupHardwareInstanceWhereUniqueInput;
  3092. disconnect?:
  3093. | SetupHardwareInstanceWhereUniqueInput[]
  3094. | SetupHardwareInstanceWhereUniqueInput;
  3095. deleteMany?:
  3096. | SetupHardwareInstanceScalarWhereInput[]
  3097. | SetupHardwareInstanceScalarWhereInput;
  3098. updateMany?:
  3099. | SetupHardwareInstanceUpdateManyWithWhereNestedInput[]
  3100. | SetupHardwareInstanceUpdateManyWithWhereNestedInput;
  3101. }
  3102. export interface SetupHardwareInstanceUpdateWithWhereUniqueNestedInput {
  3103. where: SetupHardwareInstanceWhereUniqueInput;
  3104. data: SetupHardwareInstanceUpdateDataInput;
  3105. }
  3106. export interface SetupHardwareInstanceUpdateDataInput {
  3107. setupHardware?: SetupHardwareUpdateOneRequiredInput;
  3108. identifier?: String;
  3109. images?: FileUpdateManyInput;
  3110. }
  3111. export interface SetupHardwareUpdateOneRequiredInput {
  3112. create?: SetupHardwareCreateInput;
  3113. update?: SetupHardwareUpdateDataInput;
  3114. upsert?: SetupHardwareUpsertNestedInput;
  3115. connect?: SetupHardwareWhereUniqueInput;
  3116. }
  3117. export interface SetupHardwareUpdateDataInput {
  3118. name?: String;
  3119. description?: String;
  3120. images?: FileUpdateManyInput;
  3121. }
  3122. export interface SetupHardwareUpsertNestedInput {
  3123. update: SetupHardwareUpdateDataInput;
  3124. create: SetupHardwareCreateInput;
  3125. }
  3126. export interface SetupHardwareInstanceUpsertWithWhereUniqueNestedInput {
  3127. where: SetupHardwareInstanceWhereUniqueInput;
  3128. update: SetupHardwareInstanceUpdateDataInput;
  3129. create: SetupHardwareInstanceCreateInput;
  3130. }
  3131. export interface SetupHardwareInstanceScalarWhereInput {
  3132. id?: ID_Input;
  3133. id_not?: ID_Input;
  3134. id_in?: ID_Input[] | ID_Input;
  3135. id_not_in?: ID_Input[] | ID_Input;
  3136. id_lt?: ID_Input;
  3137. id_lte?: ID_Input;
  3138. id_gt?: ID_Input;
  3139. id_gte?: ID_Input;
  3140. id_contains?: ID_Input;
  3141. id_not_contains?: ID_Input;
  3142. id_starts_with?: ID_Input;
  3143. id_not_starts_with?: ID_Input;
  3144. id_ends_with?: ID_Input;
  3145. id_not_ends_with?: ID_Input;
  3146. identifier?: String;
  3147. identifier_not?: String;
  3148. identifier_in?: String[] | String;
  3149. identifier_not_in?: String[] | String;
  3150. identifier_lt?: String;
  3151. identifier_lte?: String;
  3152. identifier_gt?: String;
  3153. identifier_gte?: String;
  3154. identifier_contains?: String;
  3155. identifier_not_contains?: String;
  3156. identifier_starts_with?: String;
  3157. identifier_not_starts_with?: String;
  3158. identifier_ends_with?: String;
  3159. identifier_not_ends_with?: String;
  3160. AND?:
  3161. | SetupHardwareInstanceScalarWhereInput[]
  3162. | SetupHardwareInstanceScalarWhereInput;
  3163. OR?:
  3164. | SetupHardwareInstanceScalarWhereInput[]
  3165. | SetupHardwareInstanceScalarWhereInput;
  3166. NOT?:
  3167. | SetupHardwareInstanceScalarWhereInput[]
  3168. | SetupHardwareInstanceScalarWhereInput;
  3169. }
  3170. export interface SetupHardwareInstanceUpdateManyWithWhereNestedInput {
  3171. where: SetupHardwareInstanceScalarWhereInput;
  3172. data: SetupHardwareInstanceUpdateManyDataInput;
  3173. }
  3174. export interface SetupHardwareInstanceUpdateManyDataInput {
  3175. identifier?: String;
  3176. }
  3177. export interface InstrumentInstanceUpdateManyInput {
  3178. create?: InstrumentInstanceCreateInput[] | InstrumentInstanceCreateInput;
  3179. update?:
  3180. | InstrumentInstanceUpdateWithWhereUniqueNestedInput[]
  3181. | InstrumentInstanceUpdateWithWhereUniqueNestedInput;
  3182. upsert?:
  3183. | InstrumentInstanceUpsertWithWhereUniqueNestedInput[]
  3184. | InstrumentInstanceUpsertWithWhereUniqueNestedInput;
  3185. delete?:
  3186. | InstrumentInstanceWhereUniqueInput[]
  3187. | InstrumentInstanceWhereUniqueInput;
  3188. connect?:
  3189. | InstrumentInstanceWhereUniqueInput[]
  3190. | InstrumentInstanceWhereUniqueInput;
  3191. set?:
  3192. | InstrumentInstanceWhereUniqueInput[]
  3193. | InstrumentInstanceWhereUniqueInput;
  3194. disconnect?:
  3195. | InstrumentInstanceWhereUniqueInput[]
  3196. | InstrumentInstanceWhereUniqueInput;
  3197. deleteMany?:
  3198. | InstrumentInstanceScalarWhereInput[]
  3199. | InstrumentInstanceScalarWhereInput;
  3200. updateMany?:
  3201. | InstrumentInstanceUpdateManyWithWhereNestedInput[]
  3202. | InstrumentInstanceUpdateManyWithWhereNestedInput;
  3203. }
  3204. export interface InstrumentInstanceUpdateWithWhereUniqueNestedInput {
  3205. where: InstrumentInstanceWhereUniqueInput;
  3206. data: InstrumentInstanceUpdateDataInput;
  3207. }
  3208. export interface InstrumentInstanceUpdateDataInput {
  3209. instrument?: InstrumentUpdateOneRequiredInput;
  3210. identifier?: String;
  3211. interface?: InstrumentInstanceUpdateinterfaceInput;
  3212. label?: String;
  3213. location?: String;
  3214. }
  3215. export interface InstrumentUpdateOneRequiredInput {
  3216. create?: InstrumentCreateInput;
  3217. update?: InstrumentUpdateDataInput;
  3218. upsert?: InstrumentUpsertNestedInput;
  3219. connect?: InstrumentWhereUniqueInput;
  3220. }
  3221. export interface InstrumentUpdateDataInput {
  3222. name?: String;
  3223. description?: String;
  3224. documents?: FileUpdateManyInput;
  3225. interfaces?: InstrumentUpdateinterfacesInput;
  3226. commands?: InstrumentCommandUpdateManyWithoutInstrumentInput;
  3227. parameters?: InstrumentParameterUpdateManyInput;
  3228. subsystems?: InstrumentSubsystemUpdateManyInput;
  3229. }
  3230. export interface InstrumentUpdateinterfacesInput {
  3231. set?: String[] | String;
  3232. }
  3233. export interface InstrumentCommandUpdateManyWithoutInstrumentInput {
  3234. create?:
  3235. | InstrumentCommandCreateWithoutInstrumentInput[]
  3236. | InstrumentCommandCreateWithoutInstrumentInput;
  3237. delete?:
  3238. | InstrumentCommandWhereUniqueInput[]
  3239. | InstrumentCommandWhereUniqueInput;
  3240. connect?:
  3241. | InstrumentCommandWhereUniqueInput[]
  3242. | InstrumentCommandWhereUniqueInput;
  3243. set?: InstrumentCommandWhereUniqueInput[] | InstrumentCommandWhereUniqueInput;
  3244. disconnect?:
  3245. | InstrumentCommandWhereUniqueInput[]
  3246. | InstrumentCommandWhereUniqueInput;
  3247. update?:
  3248. | InstrumentCommandUpdateWithWhereUniqueWithoutInstrumentInput[]
  3249. | InstrumentCommandUpdateWithWhereUniqueWithoutInstrumentInput;
  3250. upsert?:
  3251. | InstrumentCommandUpsertWithWhereUniqueWithoutInstrumentInput[]
  3252. | InstrumentCommandUpsertWithWhereUniqueWithoutInstrumentInput;
  3253. deleteMany?:
  3254. | InstrumentCommandScalarWhereInput[]
  3255. | InstrumentCommandScalarWhereInput;
  3256. updateMany?:
  3257. | InstrumentCommandUpdateManyWithWhereNestedInput[]
  3258. | InstrumentCommandUpdateManyWithWhereNestedInput;
  3259. }
  3260. export interface InstrumentCommandUpdateWithWhereUniqueWithoutInstrumentInput {
  3261. where: InstrumentCommandWhereUniqueInput;
  3262. data: InstrumentCommandUpdateWithoutInstrumentDataInput;
  3263. }
  3264. export interface InstrumentCommandUpdateWithoutInstrumentDataInput {
  3265. tag?: String;
  3266. name?: String;
  3267. description?: String;
  3268. readString?: String;
  3269. writeString?: String;
  3270. parameters?: InstrumentParameterUpdateManyInput;
  3271. }
  3272. export interface InstrumentParameterUpdateManyInput {
  3273. create?: InstrumentParameterCreateInput[] | InstrumentParameterCreateInput;
  3274. update?:
  3275. | InstrumentParameterUpdateWithWhereUniqueNestedInput[]
  3276. | InstrumentParameterUpdateWithWhereUniqueNestedInput;
  3277. upsert?:
  3278. | InstrumentParameterUpsertWithWhereUniqueNestedInput[]
  3279. | InstrumentParameterUpsertWithWhereUniqueNestedInput;
  3280. delete?:
  3281. | InstrumentParameterWhereUniqueInput[]
  3282. | InstrumentParameterWhereUniqueInput;
  3283. connect?:
  3284. | InstrumentParameterWhereUniqueInput[]
  3285. | InstrumentParameterWhereUniqueInput;
  3286. set?:
  3287. | InstrumentParameterWhereUniqueInput[]
  3288. | InstrumentParameterWhereUniqueInput;
  3289. disconnect?:
  3290. | InstrumentParameterWhereUniqueInput[]
  3291. | InstrumentParameterWhereUniqueInput;
  3292. deleteMany?:
  3293. | InstrumentParameterScalarWhereInput[]
  3294. | InstrumentParameterScalarWhereInput;
  3295. updateMany?:
  3296. | InstrumentParameterUpdateManyWithWhereNestedInput[]
  3297. | InstrumentParameterUpdateManyWithWhereNestedInput;
  3298. }
  3299. export interface InstrumentParameterUpdateWithWhereUniqueNestedInput {
  3300. where: InstrumentParameterWhereUniqueInput;
  3301. data: InstrumentParameterUpdateDataInput;
  3302. }
  3303. export interface InstrumentParameterUpdateDataInput {
  3304. tag?: String;
  3305. name?: String;
  3306. description?: String;
  3307. type?: String;
  3308. values?: String;
  3309. }
  3310. export interface InstrumentParameterUpsertWithWhereUniqueNestedInput {
  3311. where: InstrumentParameterWhereUniqueInput;
  3312. update: InstrumentParameterUpdateDataInput;
  3313. create: InstrumentParameterCreateInput;
  3314. }
  3315. export interface InstrumentParameterScalarWhereInput {
  3316. id?: ID_Input;
  3317. id_not?: ID_Input;
  3318. id_in?: ID_Input[] | ID_Input;
  3319. id_not_in?: ID_Input[] | ID_Input;
  3320. id_lt?: ID_Input;
  3321. id_lte?: ID_Input;
  3322. id_gt?: ID_Input;
  3323. id_gte?: ID_Input;
  3324. id_contains?: ID_Input;
  3325. id_not_contains?: ID_Input;
  3326. id_starts_with?: ID_Input;
  3327. id_not_starts_with?: ID_Input;
  3328. id_ends_with?: ID_Input;
  3329. id_not_ends_with?: ID_Input;
  3330. tag?: String;
  3331. tag_not?: String;
  3332. tag_in?: String[] | String;
  3333. tag_not_in?: String[] | String;
  3334. tag_lt?: String;
  3335. tag_lte?: String;
  3336. tag_gt?: String;
  3337. tag_gte?: String;
  3338. tag_contains?: String;
  3339. tag_not_contains?: String;
  3340. tag_starts_with?: String;
  3341. tag_not_starts_with?: String;
  3342. tag_ends_with?: String;
  3343. tag_not_ends_with?: String;
  3344. name?: String;
  3345. name_not?: String;
  3346. name_in?: String[] | String;
  3347. name_not_in?: String[] | String;
  3348. name_lt?: String;
  3349. name_lte?: String;
  3350. name_gt?: String;
  3351. name_gte?: String;
  3352. name_contains?: String;
  3353. name_not_contains?: String;
  3354. name_starts_with?: String;
  3355. name_not_starts_with?: String;
  3356. name_ends_with?: String;
  3357. name_not_ends_with?: String;
  3358. description?: String;
  3359. description_not?: String;
  3360. description_in?: String[] | String;
  3361. description_not_in?: String[] | String;
  3362. description_lt?: String;
  3363. description_lte?: String;
  3364. description_gt?: String;
  3365. description_gte?: String;
  3366. description_contains?: String;
  3367. description_not_contains?: String;
  3368. description_starts_with?: String;
  3369. description_not_starts_with?: String;
  3370. description_ends_with?: String;
  3371. description_not_ends_with?: String;
  3372. type?: String;
  3373. type_not?: String;
  3374. type_in?: String[] | String;
  3375. type_not_in?: String[] | String;
  3376. type_lt?: String;
  3377. type_lte?: String;
  3378. type_gt?: String;
  3379. type_gte?: String;
  3380. type_contains?: String;
  3381. type_not_contains?: String;
  3382. type_starts_with?: String;
  3383. type_not_starts_with?: String;
  3384. type_ends_with?: String;
  3385. type_not_ends_with?: String;
  3386. values?: String;
  3387. values_not?: String;
  3388. values_in?: String[] | String;
  3389. values_not_in?: String[] | String;
  3390. values_lt?: String;
  3391. values_lte?: String;
  3392. values_gt?: String;
  3393. values_gte?: String;
  3394. values_contains?: String;
  3395. values_not_contains?: String;
  3396. values_starts_with?: String;
  3397. values_not_starts_with?: String;
  3398. values_ends_with?: String;
  3399. values_not_ends_with?: String;
  3400. AND?:
  3401. | InstrumentParameterScalarWhereInput[]
  3402. | InstrumentParameterScalarWhereInput;
  3403. OR?:
  3404. | InstrumentParameterScalarWhereInput[]
  3405. | InstrumentParameterScalarWhereInput;
  3406. NOT?:
  3407. | InstrumentParameterScalarWhereInput[]
  3408. | InstrumentParameterScalarWhereInput;
  3409. }
  3410. export interface InstrumentParameterUpdateManyWithWhereNestedInput {
  3411. where: InstrumentParameterScalarWhereInput;
  3412. data: InstrumentParameterUpdateManyDataInput;
  3413. }
  3414. export interface InstrumentParameterUpdateManyDataInput {
  3415. tag?: String;
  3416. name?: String;
  3417. description?: String;
  3418. type?: String;
  3419. values?: String;
  3420. }
  3421. export interface InstrumentCommandUpsertWithWhereUniqueWithoutInstrumentInput {
  3422. where: InstrumentCommandWhereUniqueInput;
  3423. update: InstrumentCommandUpdateWithoutInstrumentDataInput;
  3424. create: InstrumentCommandCreateWithoutInstrumentInput;
  3425. }
  3426. export interface InstrumentCommandScalarWhereInput {
  3427. id?: ID_Input;
  3428. id_not?: ID_Input;
  3429. id_in?: ID_Input[] | ID_Input;
  3430. id_not_in?: ID_Input[] | ID_Input;
  3431. id_lt?: ID_Input;
  3432. id_lte?: ID_Input;
  3433. id_gt?: ID_Input;
  3434. id_gte?: ID_Input;
  3435. id_contains?: ID_Input;
  3436. id_not_contains?: ID_Input;
  3437. id_starts_with?: ID_Input;
  3438. id_not_starts_with?: ID_Input;
  3439. id_ends_with?: ID_Input;
  3440. id_not_ends_with?: ID_Input;
  3441. tag?: String;
  3442. tag_not?: String;
  3443. tag_in?: String[] | String;
  3444. tag_not_in?: String[] | String;
  3445. tag_lt?: String;
  3446. tag_lte?: String;
  3447. tag_gt?: String;
  3448. tag_gte?: String;
  3449. tag_contains?: String;
  3450. tag_not_contains?: String;
  3451. tag_starts_with?: String;
  3452. tag_not_starts_with?: String;
  3453. tag_ends_with?: String;
  3454. tag_not_ends_with?: String;
  3455. name?: String;
  3456. name_not?: String;
  3457. name_in?: String[] | String;
  3458. name_not_in?: String[] | String;
  3459. name_lt?: String;
  3460. name_lte?: String;
  3461. name_gt?: String;
  3462. name_gte?: String;
  3463. name_contains?: String;
  3464. name_not_contains?: String;
  3465. name_starts_with?: String;
  3466. name_not_starts_with?: String;
  3467. name_ends_with?: String;
  3468. name_not_ends_with?: String;
  3469. description?: String;
  3470. description_not?: String;
  3471. description_in?: String[] | String;
  3472. description_not_in?: String[] | String;
  3473. description_lt?: String;
  3474. description_lte?: String;
  3475. description_gt?: String;
  3476. description_gte?: String;
  3477. description_contains?: String;
  3478. description_not_contains?: String;
  3479. description_starts_with?: String;
  3480. description_not_starts_with?: String;
  3481. description_ends_with?: String;
  3482. description_not_ends_with?: String;
  3483. readString?: String;
  3484. readString_not?: String;
  3485. readString_in?: String[] | String;
  3486. readString_not_in?: String[] | String;
  3487. readString_lt?: String;
  3488. readString_lte?: String;
  3489. readString_gt?: String;
  3490. readString_gte?: String;
  3491. readString_contains?: String;
  3492. readString_not_contains?: String;
  3493. readString_starts_with?: String;
  3494. readString_not_starts_with?: String;
  3495. readString_ends_with?: String;
  3496. readString_not_ends_with?: String;
  3497. writeString?: String;
  3498. writeString_not?: String;
  3499. writeString_in?: String[] | String;
  3500. writeString_not_in?: String[] | String;
  3501. writeString_lt?: String;
  3502. writeString_lte?: String;
  3503. writeString_gt?: String;
  3504. writeString_gte?: String;
  3505. writeString_contains?: String;
  3506. writeString_not_contains?: String;
  3507. writeString_starts_with?: String;
  3508. writeString_not_starts_with?: String;
  3509. writeString_ends_with?: String;
  3510. writeString_not_ends_with?: String;
  3511. AND?: InstrumentCommandScalarWhereInput[] | InstrumentCommandScalarWhereInput;
  3512. OR?: InstrumentCommandScalarWhereInput[] | InstrumentCommandScalarWhereInput;
  3513. NOT?: InstrumentCommandScalarWhereInput[] | InstrumentCommandScalarWhereInput;
  3514. }
  3515. export interface InstrumentCommandUpdateManyWithWhereNestedInput {
  3516. where: InstrumentCommandScalarWhereInput;
  3517. data: InstrumentCommandUpdateManyDataInput;
  3518. }
  3519. export interface InstrumentCommandUpdateManyDataInput {
  3520. tag?: String;
  3521. name?: String;
  3522. description?: String;
  3523. readString?: String;
  3524. writeString?: String;
  3525. }
  3526. export interface InstrumentSubsystemUpdateManyInput {
  3527. create?: InstrumentSubsystemCreateInput[] | InstrumentSubsystemCreateInput;
  3528. update?:
  3529. | InstrumentSubsystemUpdateWithWhereUniqueNestedInput[]
  3530. | InstrumentSubsystemUpdateWithWhereUniqueNestedInput;
  3531. upsert?:
  3532. | InstrumentSubsystemUpsertWithWhereUniqueNestedInput[]
  3533. | InstrumentSubsystemUpsertWithWhereUniqueNestedInput;
  3534. delete?:
  3535. | InstrumentSubsystemWhereUniqueInput[]
  3536. | InstrumentSubsystemWhereUniqueInput;
  3537. connect?:
  3538. | InstrumentSubsystemWhereUniqueInput[]
  3539. | InstrumentSubsystemWhereUniqueInput;
  3540. set?:
  3541. | InstrumentSubsystemWhereUniqueInput[]
  3542. | InstrumentSubsystemWhereUniqueInput;
  3543. disconnect?:
  3544. | InstrumentSubsystemWhereUniqueInput[]
  3545. | InstrumentSubsystemWhereUniqueInput;
  3546. deleteMany?:
  3547. | InstrumentSubsystemScalarWhereInput[]
  3548. | InstrumentSubsystemScalarWhereInput;
  3549. updateMany?:
  3550. | InstrumentSubsystemUpdateManyWithWhereNestedInput[]
  3551. | InstrumentSubsystemUpdateManyWithWhereNestedInput;
  3552. }
  3553. export interface InstrumentSubsystemUpdateWithWhereUniqueNestedInput {
  3554. where: InstrumentSubsystemWhereUniqueInput;
  3555. data: InstrumentSubsystemUpdateDataInput;
  3556. }
  3557. export interface InstrumentSubsystemUpdateDataInput {
  3558. name?: String;
  3559. description?: String;
  3560. commands?: InstrumentCommandUpdateManyInput;
  3561. parameters?: InstrumentParameterUpdateManyInput;
  3562. subsystems?: InstrumentSubsystemUpdateManyInput;
  3563. }
  3564. export interface InstrumentCommandUpdateManyInput {
  3565. create?: InstrumentCommandCreateInput[] | InstrumentCommandCreateInput;
  3566. update?:
  3567. | InstrumentCommandUpdateWithWhereUniqueNestedInput[]
  3568. | InstrumentCommandUpdateWithWhereUniqueNestedInput;
  3569. upsert?:
  3570. | InstrumentCommandUpsertWithWhereUniqueNestedInput[]
  3571. | InstrumentCommandUpsertWithWhereUniqueNestedInput;
  3572. delete?:
  3573. | InstrumentCommandWhereUniqueInput[]
  3574. | InstrumentCommandWhereUniqueInput;
  3575. connect?:
  3576. | InstrumentCommandWhereUniqueInput[]
  3577. | InstrumentCommandWhereUniqueInput;
  3578. set?: InstrumentCommandWhereUniqueInput[] | InstrumentCommandWhereUniqueInput;
  3579. disconnect?:
  3580. | InstrumentCommandWhereUniqueInput[]
  3581. | InstrumentCommandWhereUniqueInput;
  3582. deleteMany?:
  3583. | InstrumentCommandScalarWhereInput[]
  3584. | InstrumentCommandScalarWhereInput;
  3585. updateMany?:
  3586. | InstrumentCommandUpdateManyWithWhereNestedInput[]
  3587. | InstrumentCommandUpdateManyWithWhereNestedInput;
  3588. }
  3589. export interface InstrumentCommandUpdateWithWhereUniqueNestedInput {
  3590. where: InstrumentCommandWhereUniqueInput;
  3591. data: InstrumentCommandUpdateDataInput;
  3592. }
  3593. export interface InstrumentCommandUpdateDataInput {
  3594. tag?: String;
  3595. name?: String;
  3596. description?: String;
  3597. instrument?: InstrumentUpdateOneRequiredWithoutCommandsInput;
  3598. readString?: String;
  3599. writeString?: String;
  3600. parameters?: InstrumentParameterUpdateManyInput;
  3601. }
  3602. export interface InstrumentUpdateOneRequiredWithoutCommandsInput {
  3603. create?: InstrumentCreateWithoutCommandsInput;
  3604. update?: InstrumentUpdateWithoutCommandsDataInput;
  3605. upsert?: InstrumentUpsertWithoutCommandsInput;
  3606. connect?: InstrumentWhereUniqueInput;
  3607. }
  3608. export interface InstrumentUpdateWithoutCommandsDataInput {
  3609. name?: String;
  3610. description?: String;
  3611. documents?: FileUpdateManyInput;
  3612. interfaces?: InstrumentUpdateinterfacesInput;
  3613. parameters?: InstrumentParameterUpdateManyInput;
  3614. subsystems?: InstrumentSubsystemUpdateManyInput;
  3615. }
  3616. export interface InstrumentUpsertWithoutCommandsInput {
  3617. update: InstrumentUpdateWithoutCommandsDataInput;
  3618. create: InstrumentCreateWithoutCommandsInput;
  3619. }
  3620. export interface InstrumentCommandUpsertWithWhereUniqueNestedInput {
  3621. where: InstrumentCommandWhereUniqueInput;
  3622. update: InstrumentCommandUpdateDataInput;
  3623. create: InstrumentCommandCreateInput;
  3624. }
  3625. export interface InstrumentSubsystemUpsertWithWhereUniqueNestedInput {
  3626. where: InstrumentSubsystemWhereUniqueInput;
  3627. update: InstrumentSubsystemUpdateDataInput;
  3628. create: InstrumentSubsystemCreateInput;
  3629. }
  3630. export interface InstrumentSubsystemScalarWhereInput {
  3631. id?: ID_Input;
  3632. id_not?: ID_Input;
  3633. id_in?: ID_Input[] | ID_Input;
  3634. id_not_in?: ID_Input[] | ID_Input;
  3635. id_lt?: ID_Input;
  3636. id_lte?: ID_Input;
  3637. id_gt?: ID_Input;
  3638. id_gte?: ID_Input;
  3639. id_contains?: ID_Input;
  3640. id_not_contains?: ID_Input;
  3641. id_starts_with?: ID_Input;
  3642. id_not_starts_with?: ID_Input;
  3643. id_ends_with?: ID_Input;
  3644. id_not_ends_with?: ID_Input;
  3645. name?: String;
  3646. name_not?: String;
  3647. name_in?: String[] | String;
  3648. name_not_in?: String[] | String;
  3649. name_lt?: String;
  3650. name_lte?: String;
  3651. name_gt?: String;
  3652. name_gte?: String;
  3653. name_contains?: String;
  3654. name_not_contains?: String;
  3655. name_starts_with?: String;
  3656. name_not_starts_with?: String;
  3657. name_ends_with?: String;
  3658. name_not_ends_with?: String;
  3659. description?: String;
  3660. description_not?: String;
  3661. description_in?: String[] | String;
  3662. description_not_in?: String[] | String;
  3663. description_lt?: String;
  3664. description_lte?: String;
  3665. description_gt?: String;
  3666. description_gte?: String;
  3667. description_contains?: String;
  3668. description_not_contains?: String;
  3669. description_starts_with?: String;
  3670. description_not_starts_with?: String;
  3671. description_ends_with?: String;
  3672. description_not_ends_with?: String;
  3673. AND?:
  3674. | InstrumentSubsystemScalarWhereInput[]
  3675. | InstrumentSubsystemScalarWhereInput;
  3676. OR?:
  3677. | InstrumentSubsystemScalarWhereInput[]
  3678. | InstrumentSubsystemScalarWhereInput;
  3679. NOT?:
  3680. | InstrumentSubsystemScalarWhereInput[]
  3681. | InstrumentSubsystemScalarWhereInput;
  3682. }
  3683. export interface InstrumentSubsystemUpdateManyWithWhereNestedInput {
  3684. where: InstrumentSubsystemScalarWhereInput;
  3685. data: InstrumentSubsystemUpdateManyDataInput;
  3686. }
  3687. export interface InstrumentSubsystemUpdateManyDataInput {
  3688. name?: String;
  3689. description?: String;
  3690. }
  3691. export interface InstrumentUpsertNestedInput {
  3692. update: InstrumentUpdateDataInput;
  3693. create: InstrumentCreateInput;
  3694. }
  3695. export interface InstrumentInstanceUpdateinterfaceInput {
  3696. set?: String[] | String;
  3697. }
  3698. export interface InstrumentInstanceUpsertWithWhereUniqueNestedInput {
  3699. where: InstrumentInstanceWhereUniqueInput;
  3700. update: InstrumentInstanceUpdateDataInput;
  3701. create: InstrumentInstanceCreateInput;
  3702. }
  3703. export interface InstrumentInstanceScalarWhereInput {
  3704. id?: ID_Input;
  3705. id_not?: ID_Input;
  3706. id_in?: ID_Input[] | ID_Input;
  3707. id_not_in?: ID_Input[] | ID_Input;
  3708. id_lt?: ID_Input;
  3709. id_lte?: ID_Input;
  3710. id_gt?: ID_Input;
  3711. id_gte?: ID_Input;
  3712. id_contains?: ID_Input;
  3713. id_not_contains?: ID_Input;
  3714. id_starts_with?: ID_Input;
  3715. id_not_starts_with?: ID_Input;
  3716. id_ends_with?: ID_Input;
  3717. id_not_ends_with?: ID_Input;
  3718. identifier?: String;
  3719. identifier_not?: String;
  3720. identifier_in?: String[] | String;
  3721. identifier_not_in?: String[] | String;
  3722. identifier_lt?: String;
  3723. identifier_lte?: String;
  3724. identifier_gt?: String;
  3725. identifier_gte?: String;
  3726. identifier_contains?: String;
  3727. identifier_not_contains?: String;
  3728. identifier_starts_with?: String;
  3729. identifier_not_starts_with?: String;
  3730. identifier_ends_with?: String;
  3731. identifier_not_ends_with?: String;
  3732. label?: String;
  3733. label_not?: String;
  3734. label_in?: String[] | String;
  3735. label_not_in?: String[] | String;
  3736. label_lt?: String;
  3737. label_lte?: String;
  3738. label_gt?: String;
  3739. label_gte?: String;
  3740. label_contains?: String;
  3741. label_not_contains?: String;
  3742. label_starts_with?: String;
  3743. label_not_starts_with?: String;
  3744. label_ends_with?: String;
  3745. label_not_ends_with?: String;
  3746. location?: String;
  3747. location_not?: String;
  3748. location_in?: String[] | String;
  3749. location_not_in?: String[] | String;
  3750. location_lt?: String;
  3751. location_lte?: String;
  3752. location_gt?: String;
  3753. location_gte?: String;
  3754. location_contains?: String;
  3755. location_not_contains?: String;
  3756. location_starts_with?: String;
  3757. location_not_starts_with?: String;
  3758. location_ends_with?: String;
  3759. location_not_ends_with?: String;
  3760. AND?:
  3761. | InstrumentInstanceScalarWhereInput[]
  3762. | InstrumentInstanceScalarWhereInput;
  3763. OR?:
  3764. | InstrumentInstanceScalarWhereInput[]
  3765. | InstrumentInstanceScalarWhereInput;
  3766. NOT?:
  3767. | InstrumentInstanceScalarWhereInput[]
  3768. | InstrumentInstanceScalarWhereInput;
  3769. }
  3770. export interface InstrumentInstanceUpdateManyWithWhereNestedInput {
  3771. where: InstrumentInstanceScalarWhereInput;
  3772. data: InstrumentInstanceUpdateManyDataInput;
  3773. }
  3774. export interface InstrumentInstanceUpdateManyDataInput {
  3775. identifier?: String;
  3776. interface?: InstrumentInstanceUpdateinterfaceInput;
  3777. label?: String;
  3778. location?: String;
  3779. }
  3780. export interface SetupUpsertNestedInput {
  3781. update: SetupUpdateDataInput;
  3782. create: SetupCreateInput;
  3783. }
  3784. export interface MeasurementRunUpsertWithWhereUniqueNestedInput {
  3785. where: MeasurementRunWhereUniqueInput;
  3786. update: MeasurementRunUpdateDataInput;
  3787. create: MeasurementRunCreateInput;
  3788. }
  3789. export interface MeasurementRunScalarWhereInput {
  3790. id?: ID_Input;
  3791. id_not?: ID_Input;
  3792. id_in?: ID_Input[] | ID_Input;
  3793. id_not_in?: ID_Input[] | ID_Input;
  3794. id_lt?: ID_Input;
  3795. id_lte?: ID_Input;
  3796. id_gt?: ID_Input;
  3797. id_gte?: ID_Input;
  3798. id_contains?: ID_Input;
  3799. id_not_contains?: ID_Input;
  3800. id_starts_with?: ID_Input;
  3801. id_not_starts_with?: ID_Input;
  3802. id_ends_with?: ID_Input;
  3803. id_not_ends_with?: ID_Input;
  3804. location?: String;
  3805. location_not?: String;
  3806. location_in?: String[] | String;
  3807. location_not_in?: String[] | String;
  3808. location_lt?: String;
  3809. location_lte?: String;
  3810. location_gt?: String;
  3811. location_gte?: String;
  3812. location_contains?: String;
  3813. location_not_contains?: String;
  3814. location_starts_with?: String;
  3815. location_not_starts_with?: String;
  3816. location_ends_with?: String;
  3817. location_not_ends_with?: String;
  3818. temperature?: Float;
  3819. temperature_not?: Float;
  3820. temperature_in?: Float[] | Float;
  3821. temperature_not_in?: Float[] | Float;
  3822. temperature_lt?: Float;
  3823. temperature_lte?: Float;
  3824. temperature_gt?: Float;
  3825. temperature_gte?: Float;
  3826. startTime?: DateTimeInput;
  3827. startTime_not?: DateTimeInput;
  3828. startTime_in?: DateTimeInput[] | DateTimeInput;
  3829. startTime_not_in?: DateTimeInput[] | DateTimeInput;
  3830. startTime_lt?: DateTimeInput;
  3831. startTime_lte?: DateTimeInput;
  3832. startTime_gt?: DateTimeInput;
  3833. startTime_gte?: DateTimeInput;
  3834. endTime?: DateTimeInput;
  3835. endTime_not?: DateTimeInput;
  3836. endTime_in?: DateTimeInput[] | DateTimeInput;
  3837. endTime_not_in?: DateTimeInput[] | DateTimeInput;
  3838. endTime_lt?: DateTimeInput;
  3839. endTime_lte?: DateTimeInput;
  3840. endTime_gt?: DateTimeInput;
  3841. endTime_gte?: DateTimeInput;
  3842. AND?: MeasurementRunScalarWhereInput[] | MeasurementRunScalarWhereInput;
  3843. OR?: MeasurementRunScalarWhereInput[] | MeasurementRunScalarWhereInput;
  3844. NOT?: MeasurementRunScalarWhereInput[] | MeasurementRunScalarWhereInput;
  3845. }
  3846. export interface MeasurementRunUpdateManyWithWhereNestedInput {
  3847. where: MeasurementRunScalarWhereInput;
  3848. data: MeasurementRunUpdateManyDataInput;
  3849. }
  3850. export interface MeasurementRunUpdateManyDataInput {
  3851. location?: String;
  3852. temperature?: Float;
  3853. startTime?: DateTimeInput;
  3854. endTime?: DateTimeInput;
  3855. }
  3856. export interface CommentUpdateInput {
  3857. text?: String;
  3858. previousVersion?: CommentUpdateOneInput;
  3859. }
  3860. export interface CommentUpdateManyMutationInput {
  3861. text?: String;
  3862. }
  3863. export interface DUTCreateInput {
  3864. name: String;
  3865. description?: String;
  3866. project: ProjectVersionCreateOneInput;
  3867. modifications?: DUTCreatemodificationsInput;
  3868. }
  3869. export interface ProjectVersionCreateOneInput {
  3870. create?: ProjectVersionCreateInput;
  3871. connect?: ProjectVersionWhereUniqueInput;
  3872. }
  3873. export interface ProjectVersionCreateInput {
  3874. name: String;
  3875. changes: String;
  3876. date: DateTimeInput;
  3877. }
  3878. export interface DUTCreatemodificationsInput {
  3879. set?: String[] | String;
  3880. }
  3881. export interface DUTUpdateInput {
  3882. name?: String;
  3883. description?: String;
  3884. project?: ProjectVersionUpdateOneRequiredInput;
  3885. modifications?: DUTUpdatemodificationsInput;
  3886. }
  3887. export interface ProjectVersionUpdateOneRequiredInput {
  3888. create?: ProjectVersionCreateInput;
  3889. update?: ProjectVersionUpdateDataInput;
  3890. upsert?: ProjectVersionUpsertNestedInput;
  3891. connect?: ProjectVersionWhereUniqueInput;
  3892. }
  3893. export interface ProjectVersionUpdateDataInput {
  3894. name?: String;
  3895. changes?: String;
  3896. date?: DateTimeInput;
  3897. }
  3898. export interface ProjectVersionUpsertNestedInput {
  3899. update: ProjectVersionUpdateDataInput;
  3900. create: ProjectVersionCreateInput;
  3901. }
  3902. export interface DUTUpdatemodificationsInput {
  3903. set?: String[] | String;
  3904. }
  3905. export interface DUTUpdateManyMutationInput {
  3906. name?: String;
  3907. description?: String;
  3908. modifications?: DUTUpdatemodificationsInput;
  3909. }
  3910. export interface EventUpdateInput {
  3911. type?: String;
  3912. when?: DateTimeInput;
  3913. }
  3914. export interface EventUpdateManyMutationInput {
  3915. type?: String;
  3916. when?: DateTimeInput;
  3917. }
  3918. export interface FileUpdateInput {
  3919. filename?: String;
  3920. mimetype?: String;
  3921. truncated?: Boolean;
  3922. size?: Int;
  3923. md5?: String;
  3924. }
  3925. export interface FileUpdateManyMutationInput {
  3926. filename?: String;
  3927. mimetype?: String;
  3928. truncated?: Boolean;
  3929. size?: Int;
  3930. md5?: String;
  3931. }
  3932. export interface InstrumentUpdateInput {
  3933. name?: String;
  3934. description?: String;
  3935. documents?: FileUpdateManyInput;
  3936. interfaces?: InstrumentUpdateinterfacesInput;
  3937. commands?: InstrumentCommandUpdateManyWithoutInstrumentInput;
  3938. parameters?: InstrumentParameterUpdateManyInput;
  3939. subsystems?: InstrumentSubsystemUpdateManyInput;
  3940. }
  3941. export interface InstrumentUpdateManyMutationInput {
  3942. name?: String;
  3943. description?: String;
  3944. interfaces?: InstrumentUpdateinterfacesInput;
  3945. }
  3946. export interface InstrumentCommandUpdateInput {
  3947. tag?: String;
  3948. name?: String;
  3949. description?: String;
  3950. instrument?: InstrumentUpdateOneRequiredWithoutCommandsInput;
  3951. readString?: String;
  3952. writeString?: String;
  3953. parameters?: InstrumentParameterUpdateManyInput;
  3954. }
  3955. export interface InstrumentCommandUpdateManyMutationInput {
  3956. tag?: String;
  3957. name?: String;
  3958. description?: String;
  3959. readString?: String;
  3960. writeString?: String;
  3961. }
  3962. export interface InstrumentInstanceUpdateInput {
  3963. instrument?: InstrumentUpdateOneRequiredInput;
  3964. identifier?: String;
  3965. interface?: InstrumentInstanceUpdateinterfaceInput;
  3966. label?: String;
  3967. location?: String;
  3968. }
  3969. export interface InstrumentInstanceUpdateManyMutationInput {
  3970. identifier?: String;
  3971. interface?: InstrumentInstanceUpdateinterfaceInput;
  3972. label?: String;
  3973. location?: String;
  3974. }
  3975. export interface InstrumentParameterUpdateInput {
  3976. tag?: String;
  3977. name?: String;
  3978. description?: String;
  3979. type?: String;
  3980. values?: String;
  3981. }
  3982. export interface InstrumentParameterUpdateManyMutationInput {
  3983. tag?: String;
  3984. name?: String;
  3985. description?: String;
  3986. type?: String;
  3987. values?: String;
  3988. }
  3989. export interface InstrumentSubsystemUpdateInput {
  3990. name?: String;
  3991. description?: String;
  3992. commands?: InstrumentCommandUpdateManyInput;
  3993. parameters?: InstrumentParameterUpdateManyInput;
  3994. subsystems?: InstrumentSubsystemUpdateManyInput;
  3995. }
  3996. export interface InstrumentSubsystemUpdateManyMutationInput {
  3997. name?: String;
  3998. description?: String;
  3999. }
  4000. export interface MeasurementUpdateInput {
  4001. intValue?: Int;
  4002. floatValue?: Float;
  4003. stringValue?: String;
  4004. }
  4005. export interface MeasurementUpdateManyMutationInput {
  4006. intValue?: Int;
  4007. floatValue?: Float;
  4008. stringValue?: String;
  4009. }
  4010. export interface MeasurementRunUpdateInput {
  4011. operator?: UserUpdateManyInput;
  4012. location?: String;
  4013. temperature?: Float;
  4014. startTime?: DateTimeInput;
  4015. endTime?: DateTimeInput;
  4016. timeline?: EventUpdateManyInput;
  4017. comments?: CommentUpdateManyInput;
  4018. measurements?: MeasurementUpdateManyInput;
  4019. setup?: SetupUpdateOneRequiredInput;
  4020. }
  4021. export interface MeasurementRunUpdateManyMutationInput {
  4022. location?: String;
  4023. temperature?: Float;
  4024. startTime?: DateTimeInput;
  4025. endTime?: DateTimeInput;
  4026. }
  4027. export interface ProjectUpdateInput {
  4028. name?: String;
  4029. abbreviation?: String;
  4030. description?: String;
  4031. images?: FileUpdateManyInput;
  4032. }
  4033. export interface ProjectUpdateManyMutationInput {
  4034. name?: String;
  4035. abbreviation?: String;
  4036. description?: String;
  4037. }
  4038. export interface ProjectVersionUpdateInput {
  4039. name?: String;
  4040. changes?: String;
  4041. date?: DateTimeInput;
  4042. }
  4043. export interface ProjectVersionUpdateManyMutationInput {
  4044. name?: String;
  4045. changes?: String;
  4046. date?: DateTimeInput;
  4047. }
  4048. export interface SetupUpdateInput {
  4049. name?: String;
  4050. description?: String;
  4051. images?: FileUpdateManyInput;
  4052. comments?: CommentUpdateManyInput;
  4053. setupHardware?: SetupHardwareInstanceUpdateManyInput;
  4054. instruments?: InstrumentInstanceUpdateManyInput;
  4055. }
  4056. export interface SetupUpdateManyMutationInput {
  4057. name?: String;
  4058. description?: String;
  4059. }
  4060. export interface SetupHardwareUpdateInput {
  4061. name?: String;
  4062. description?: String;
  4063. images?: FileUpdateManyInput;
  4064. }
  4065. export interface SetupHardwareUpdateManyMutationInput {
  4066. name?: String;
  4067. description?: String;
  4068. }
  4069. export interface SetupHardwareInstanceUpdateInput {
  4070. setupHardware?: SetupHardwareUpdateOneRequiredInput;
  4071. identifier?: String;
  4072. images?: FileUpdateManyInput;
  4073. }
  4074. export interface SetupHardwareInstanceUpdateManyMutationInput {
  4075. identifier?: String;
  4076. }
  4077. export interface UserUpdateInput {
  4078. email?: String;
  4079. name?: String;
  4080. abbreviation?: String;
  4081. password?: String;
  4082. images?: FileUpdateManyInput;
  4083. }
  4084. export interface UserUpdateManyMutationInput {
  4085. email?: String;
  4086. name?: String;
  4087. abbreviation?: String;
  4088. password?: String;
  4089. }
  4090. export interface CharacterizationSubscriptionWhereInput {
  4091. mutation_in?: MutationType[] | MutationType;
  4092. updatedFields_contains?: String;
  4093. updatedFields_contains_every?: String[] | String;
  4094. updatedFields_contains_some?: String[] | String;
  4095. node?: CharacterizationWhereInput;
  4096. AND?:
  4097. | CharacterizationSubscriptionWhereInput[]
  4098. | CharacterizationSubscriptionWhereInput;
  4099. OR?:
  4100. | CharacterizationSubscriptionWhereInput[]
  4101. | CharacterizationSubscriptionWhereInput;
  4102. NOT?:
  4103. | CharacterizationSubscriptionWhereInput[]
  4104. | CharacterizationSubscriptionWhereInput;
  4105. }
  4106. export interface CommentSubscriptionWhereInput {
  4107. mutation_in?: MutationType[] | MutationType;
  4108. updatedFields_contains?: String;
  4109. updatedFields_contains_every?: String[] | String;
  4110. updatedFields_contains_some?: String[] | String;
  4111. node?: CommentWhereInput;
  4112. AND?: CommentSubscriptionWhereInput[] | CommentSubscriptionWhereInput;
  4113. OR?: CommentSubscriptionWhereInput[] | CommentSubscriptionWhereInput;
  4114. NOT?: CommentSubscriptionWhereInput[] | CommentSubscriptionWhereInput;
  4115. }
  4116. export interface DUTSubscriptionWhereInput {
  4117. mutation_in?: MutationType[] | MutationType;
  4118. updatedFields_contains?: String;
  4119. updatedFields_contains_every?: String[] | String;
  4120. updatedFields_contains_some?: String[] | String;
  4121. node?: DUTWhereInput;
  4122. AND?: DUTSubscriptionWhereInput[] | DUTSubscriptionWhereInput;
  4123. OR?: DUTSubscriptionWhereInput[] | DUTSubscriptionWhereInput;
  4124. NOT?: DUTSubscriptionWhereInput[] | DUTSubscriptionWhereInput;
  4125. }
  4126. export interface EventSubscriptionWhereInput {
  4127. mutation_in?: MutationType[] | MutationType;
  4128. updatedFields_contains?: String;
  4129. updatedFields_contains_every?: String[] | String;
  4130. updatedFields_contains_some?: String[] | String;
  4131. node?: EventWhereInput;
  4132. AND?: EventSubscriptionWhereInput[] | EventSubscriptionWhereInput;
  4133. OR?: EventSubscriptionWhereInput[] | EventSubscriptionWhereInput;
  4134. NOT?: EventSubscriptionWhereInput[] | EventSubscriptionWhereInput;
  4135. }
  4136. export interface FileSubscriptionWhereInput {
  4137. mutation_in?: MutationType[] | MutationType;
  4138. updatedFields_contains?: String;
  4139. updatedFields_contains_every?: String[] | String;
  4140. updatedFields_contains_some?: String[] | String;
  4141. node?: FileWhereInput;
  4142. AND?: FileSubscriptionWhereInput[] | FileSubscriptionWhereInput;
  4143. OR?: FileSubscriptionWhereInput[] | FileSubscriptionWhereInput;
  4144. NOT?: FileSubscriptionWhereInput[] | FileSubscriptionWhereInput;
  4145. }
  4146. export interface InstrumentSubscriptionWhereInput {
  4147. mutation_in?: MutationType[] | MutationType;
  4148. updatedFields_contains?: String;
  4149. updatedFields_contains_every?: String[] | String;
  4150. updatedFields_contains_some?: String[] | String;
  4151. node?: InstrumentWhereInput;
  4152. AND?: InstrumentSubscriptionWhereInput[] | InstrumentSubscriptionWhereInput;
  4153. OR?: InstrumentSubscriptionWhereInput[] | InstrumentSubscriptionWhereInput;
  4154. NOT?: InstrumentSubscriptionWhereInput[] | InstrumentSubscriptionWhereInput;
  4155. }
  4156. export interface InstrumentCommandSubscriptionWhereInput {
  4157. mutation_in?: MutationType[] | MutationType;
  4158. updatedFields_contains?: String;
  4159. updatedFields_contains_every?: String[] | String;
  4160. updatedFields_contains_some?: String[] | String;
  4161. node?: InstrumentCommandWhereInput;
  4162. AND?:
  4163. | InstrumentCommandSubscriptionWhereInput[]
  4164. | InstrumentCommandSubscriptionWhereInput;
  4165. OR?:
  4166. | InstrumentCommandSubscriptionWhereInput[]
  4167. | InstrumentCommandSubscriptionWhereInput;
  4168. NOT?:
  4169. | InstrumentCommandSubscriptionWhereInput[]
  4170. | InstrumentCommandSubscriptionWhereInput;
  4171. }
  4172. export interface InstrumentInstanceSubscriptionWhereInput {
  4173. mutation_in?: MutationType[] | MutationType;
  4174. updatedFields_contains?: String;
  4175. updatedFields_contains_every?: String[] | String;
  4176. updatedFields_contains_some?: String[] | String;
  4177. node?: InstrumentInstanceWhereInput;
  4178. AND?:
  4179. | InstrumentInstanceSubscriptionWhereInput[]
  4180. | InstrumentInstanceSubscriptionWhereInput;
  4181. OR?:
  4182. | InstrumentInstanceSubscriptionWhereInput[]
  4183. | InstrumentInstanceSubscriptionWhereInput;
  4184. NOT?:
  4185. | InstrumentInstanceSubscriptionWhereInput[]
  4186. | InstrumentInstanceSubscriptionWhereInput;
  4187. }
  4188. export interface InstrumentParameterSubscriptionWhereInput {
  4189. mutation_in?: MutationType[] | MutationType;
  4190. updatedFields_contains?: String;
  4191. updatedFields_contains_every?: String[] | String;
  4192. updatedFields_contains_some?: String[] | String;
  4193. node?: InstrumentParameterWhereInput;
  4194. AND?:
  4195. | InstrumentParameterSubscriptionWhereInput[]
  4196. | InstrumentParameterSubscriptionWhereInput;
  4197. OR?:
  4198. | InstrumentParameterSubscriptionWhereInput[]
  4199. | InstrumentParameterSubscriptionWhereInput;
  4200. NOT?:
  4201. | InstrumentParameterSubscriptionWhereInput[]
  4202. | InstrumentParameterSubscriptionWhereInput;
  4203. }
  4204. export interface InstrumentSubsystemSubscriptionWhereInput {
  4205. mutation_in?: MutationType[] | MutationType;
  4206. updatedFields_contains?: String;
  4207. updatedFields_contains_every?: String[] | String;
  4208. updatedFields_contains_some?: String[] | String;
  4209. node?: InstrumentSubsystemWhereInput;
  4210. AND?:
  4211. | InstrumentSubsystemSubscriptionWhereInput[]
  4212. | InstrumentSubsystemSubscriptionWhereInput;
  4213. OR?:
  4214. | InstrumentSubsystemSubscriptionWhereInput[]
  4215. | InstrumentSubsystemSubscriptionWhereInput;
  4216. NOT?:
  4217. | InstrumentSubsystemSubscriptionWhereInput[]
  4218. | InstrumentSubsystemSubscriptionWhereInput;
  4219. }
  4220. export interface MeasurementSubscriptionWhereInput {
  4221. mutation_in?: MutationType[] | MutationType;
  4222. updatedFields_contains?: String;
  4223. updatedFields_contains_every?: String[] | String;
  4224. updatedFields_contains_some?: String[] | String;
  4225. node?: MeasurementWhereInput;
  4226. AND?: MeasurementSubscriptionWhereInput[] | MeasurementSubscriptionWhereInput;
  4227. OR?: MeasurementSubscriptionWhereInput[] | MeasurementSubscriptionWhereInput;
  4228. NOT?: MeasurementSubscriptionWhereInput[] | MeasurementSubscriptionWhereInput;
  4229. }
  4230. export interface MeasurementRunSubscriptionWhereInput {
  4231. mutation_in?: MutationType[] | MutationType;
  4232. updatedFields_contains?: String;
  4233. updatedFields_contains_every?: String[] | String;
  4234. updatedFields_contains_some?: String[] | String;
  4235. node?: MeasurementRunWhereInput;
  4236. AND?:
  4237. | MeasurementRunSubscriptionWhereInput[]
  4238. | MeasurementRunSubscriptionWhereInput;
  4239. OR?:
  4240. | MeasurementRunSubscriptionWhereInput[]
  4241. | MeasurementRunSubscriptionWhereInput;
  4242. NOT?:
  4243. | MeasurementRunSubscriptionWhereInput[]
  4244. | MeasurementRunSubscriptionWhereInput;
  4245. }
  4246. export interface ProjectSubscriptionWhereInput {
  4247. mutation_in?: MutationType[] | MutationType;
  4248. updatedFields_contains?: String;
  4249. updatedFields_contains_every?: String[] | String;
  4250. updatedFields_contains_some?: String[] | String;
  4251. node?: ProjectWhereInput;
  4252. AND?: ProjectSubscriptionWhereInput[] | ProjectSubscriptionWhereInput;
  4253. OR?: ProjectSubscriptionWhereInput[] | ProjectSubscriptionWhereInput;
  4254. NOT?: ProjectSubscriptionWhereInput[] | ProjectSubscriptionWhereInput;
  4255. }
  4256. export interface ProjectVersionSubscriptionWhereInput {
  4257. mutation_in?: MutationType[] | MutationType;
  4258. updatedFields_contains?: String;
  4259. updatedFields_contains_every?: String[] | String;
  4260. updatedFields_contains_some?: String[] | String;
  4261. node?: ProjectVersionWhereInput;
  4262. AND?:
  4263. | ProjectVersionSubscriptionWhereInput[]
  4264. | ProjectVersionSubscriptionWhereInput;
  4265. OR?:
  4266. | ProjectVersionSubscriptionWhereInput[]
  4267. | ProjectVersionSubscriptionWhereInput;
  4268. NOT?:
  4269. | ProjectVersionSubscriptionWhereInput[]
  4270. | ProjectVersionSubscriptionWhereInput;
  4271. }
  4272. export interface SetupSubscriptionWhereInput {
  4273. mutation_in?: MutationType[] | MutationType;
  4274. updatedFields_contains?: String;
  4275. updatedFields_contains_every?: String[] | String;
  4276. updatedFields_contains_some?: String[] | String;
  4277. node?: SetupWhereInput;
  4278. AND?: SetupSubscriptionWhereInput[] | SetupSubscriptionWhereInput;
  4279. OR?: SetupSubscriptionWhereInput[] | SetupSubscriptionWhereInput;
  4280. NOT?: SetupSubscriptionWhereInput[] | SetupSubscriptionWhereInput;
  4281. }
  4282. export interface SetupHardwareSubscriptionWhereInput {
  4283. mutation_in?: MutationType[] | MutationType;
  4284. updatedFields_contains?: String;
  4285. updatedFields_contains_every?: String[] | String;
  4286. updatedFields_contains_some?: String[] | String;
  4287. node?: SetupHardwareWhereInput;
  4288. AND?:
  4289. | SetupHardwareSubscriptionWhereInput[]
  4290. | SetupHardwareSubscriptionWhereInput;
  4291. OR?:
  4292. | SetupHardwareSubscriptionWhereInput[]
  4293. | SetupHardwareSubscriptionWhereInput;
  4294. NOT?:
  4295. | SetupHardwareSubscriptionWhereInput[]
  4296. | SetupHardwareSubscriptionWhereInput;
  4297. }
  4298. export interface SetupHardwareInstanceSubscriptionWhereInput {
  4299. mutation_in?: MutationType[] | MutationType;
  4300. updatedFields_contains?: String;
  4301. updatedFields_contains_every?: String[] | String;
  4302. updatedFields_contains_some?: String[] | String;
  4303. node?: SetupHardwareInstanceWhereInput;
  4304. AND?:
  4305. | SetupHardwareInstanceSubscriptionWhereInput[]
  4306. | SetupHardwareInstanceSubscriptionWhereInput;
  4307. OR?:
  4308. | SetupHardwareInstanceSubscriptionWhereInput[]
  4309. | SetupHardwareInstanceSubscriptionWhereInput;
  4310. NOT?:
  4311. | SetupHardwareInstanceSubscriptionWhereInput[]
  4312. | SetupHardwareInstanceSubscriptionWhereInput;
  4313. }
  4314. export interface UserSubscriptionWhereInput {
  4315. mutation_in?: MutationType[] | MutationType;
  4316. updatedFields_contains?: String;
  4317. updatedFields_contains_every?: String[] | String;
  4318. updatedFields_contains_some?: String[] | String;
  4319. node?: UserWhereInput;
  4320. AND?: UserSubscriptionWhereInput[] | UserSubscriptionWhereInput;
  4321. OR?: UserSubscriptionWhereInput[] | UserSubscriptionWhereInput;
  4322. NOT?: UserSubscriptionWhereInput[] | UserSubscriptionWhereInput;
  4323. }
  4324. export interface NodeNode {
  4325. id: ID_Output;
  4326. }
  4327. export interface Characterization {
  4328. id: ID_Output;
  4329. }
  4330. export interface CharacterizationPromise
  4331. extends Promise<Characterization>,
  4332. Fragmentable {
  4333. id: () => Promise<ID_Output>;
  4334. project: <T = ProjectPromise>() => T;
  4335. measurementRuns: <T = FragmentableArray<MeasurementRun>>(
  4336. args?: {
  4337. where?: MeasurementRunWhereInput;
  4338. orderBy?: MeasurementRunOrderByInput;
  4339. skip?: Int;
  4340. after?: String;
  4341. before?: String;
  4342. first?: Int;
  4343. last?: Int;
  4344. }
  4345. ) => T;
  4346. }
  4347. export interface CharacterizationSubscription
  4348. extends Promise<AsyncIterator<Characterization>>,
  4349. Fragmentable {
  4350. id: () => Promise<AsyncIterator<ID_Output>>;
  4351. project: <T = ProjectSubscription>() => T;
  4352. measurementRuns: <T = Promise<AsyncIterator<MeasurementRunSubscription>>>(
  4353. args?: {
  4354. where?: MeasurementRunWhereInput;
  4355. orderBy?: MeasurementRunOrderByInput;
  4356. skip?: Int;
  4357. after?: String;
  4358. before?: String;
  4359. first?: Int;
  4360. last?: Int;
  4361. }
  4362. ) => T;
  4363. }
  4364. export interface Project {
  4365. id: ID_Output;
  4366. name: String;
  4367. abbreviation: String;
  4368. description?: String;
  4369. }
  4370. export interface ProjectPromise extends Promise<Project>, Fragmentable {
  4371. id: () => Promise<ID_Output>;
  4372. name: () => Promise<String>;
  4373. abbreviation: () => Promise<String>;
  4374. description: () => Promise<String>;
  4375. images: <T = FragmentableArray<File>>(
  4376. args?: {
  4377. where?: FileWhereInput;
  4378. orderBy?: FileOrderByInput;
  4379. skip?: Int;
  4380. after?: String;
  4381. before?: String;
  4382. first?: Int;
  4383. last?: Int;
  4384. }
  4385. ) => T;
  4386. }
  4387. export interface ProjectSubscription
  4388. extends Promise<AsyncIterator<Project>>,
  4389. Fragmentable {
  4390. id: () => Promise<AsyncIterator<ID_Output>>;
  4391. name: () => Promise<AsyncIterator<String>>;
  4392. abbreviation: () => Promise<AsyncIterator<String>>;
  4393. description: () => Promise<AsyncIterator<String>>;
  4394. images: <T = Promise<AsyncIterator<FileSubscription>>>(
  4395. args?: {
  4396. where?: FileWhereInput;
  4397. orderBy?: FileOrderByInput;
  4398. skip?: Int;
  4399. after?: String;
  4400. before?: String;
  4401. first?: Int;
  4402. last?: Int;
  4403. }
  4404. ) => T;
  4405. }
  4406. export interface File {
  4407. id: ID_Output;
  4408. filename: String;
  4409. mimetype: String;
  4410. truncated: Boolean;
  4411. size: Int;
  4412. md5: String;
  4413. }
  4414. export interface FilePromise extends Promise<File>, Fragmentable {
  4415. id: () => Promise<ID_Output>;
  4416. filename: () => Promise<String>;
  4417. mimetype: () => Promise<String>;
  4418. truncated: () => Promise<Boolean>;
  4419. size: () => Promise<Int>;
  4420. md5: () => Promise<String>;
  4421. }
  4422. export interface FileSubscription
  4423. extends Promise<AsyncIterator<File>>,
  4424. Fragmentable {
  4425. id: () => Promise<AsyncIterator<ID_Output>>;
  4426. filename: () => Promise<AsyncIterator<String>>;
  4427. mimetype: () => Promise<AsyncIterator<String>>;
  4428. truncated: () => Promise<AsyncIterator<Boolean>>;
  4429. size: () => Promise<AsyncIterator<Int>>;
  4430. md5: () => Promise<AsyncIterator<String>>;
  4431. }
  4432. export interface MeasurementRun {
  4433. id: ID_Output;
  4434. location: String;
  4435. temperature?: Float;
  4436. startTime: DateTimeOutput;
  4437. endTime: DateTimeOutput;
  4438. }
  4439. export interface MeasurementRunPromise
  4440. extends Promise<MeasurementRun>,
  4441. Fragmentable {
  4442. id: () => Promise<ID_Output>;
  4443. operator: <T = FragmentableArray<User>>(
  4444. args?: {
  4445. where?: UserWhereInput;
  4446. orderBy?: UserOrderByInput;
  4447. skip?: Int;
  4448. after?: String;
  4449. before?: String;
  4450. first?: Int;
  4451. last?: Int;
  4452. }
  4453. ) => T;
  4454. location: () => Promise<String>;
  4455. temperature: () => Promise<Float>;
  4456. startTime: () => Promise<DateTimeOutput>;
  4457. endTime: () => Promise<DateTimeOutput>;
  4458. timeline: <T = FragmentableArray<Event>>(
  4459. args?: {
  4460. where?: EventWhereInput;
  4461. orderBy?: EventOrderByInput;
  4462. skip?: Int;
  4463. after?: String;
  4464. before?: String;
  4465. first?: Int;
  4466. last?: Int;
  4467. }
  4468. ) => T;
  4469. comments: <T = FragmentableArray<Comment>>(
  4470. args?: {
  4471. where?: CommentWhereInput;
  4472. orderBy?: CommentOrderByInput;
  4473. skip?: Int;
  4474. after?: String;
  4475. before?: String;
  4476. first?: Int;
  4477. last?: Int;
  4478. }
  4479. ) => T;
  4480. measurements: <T = FragmentableArray<Measurement>>(
  4481. args?: {
  4482. where?: MeasurementWhereInput;
  4483. orderBy?: MeasurementOrderByInput;
  4484. skip?: Int;
  4485. after?: String;
  4486. before?: String;
  4487. first?: Int;
  4488. last?: Int;
  4489. }
  4490. ) => T;
  4491. setup: <T = SetupPromise>() => T;
  4492. }
  4493. export interface MeasurementRunSubscription
  4494. extends Promise<AsyncIterator<MeasurementRun>>,
  4495. Fragmentable {
  4496. id: () => Promise<AsyncIterator<ID_Output>>;
  4497. operator: <T = Promise<AsyncIterator<UserSubscription>>>(
  4498. args?: {
  4499. where?: UserWhereInput;
  4500. orderBy?: UserOrderByInput;
  4501. skip?: Int;
  4502. after?: String;
  4503. before?: String;
  4504. first?: Int;
  4505. last?: Int;
  4506. }
  4507. ) => T;
  4508. location: () => Promise<AsyncIterator<String>>;
  4509. temperature: () => Promise<AsyncIterator<Float>>;
  4510. startTime: () => Promise<AsyncIterator<DateTimeOutput>>;
  4511. endTime: () => Promise<AsyncIterator<DateTimeOutput>>;
  4512. timeline: <T = Promise<AsyncIterator<EventSubscription>>>(
  4513. args?: {
  4514. where?: EventWhereInput;
  4515. orderBy?: EventOrderByInput;
  4516. skip?: Int;
  4517. after?: String;
  4518. before?: String;
  4519. first?: Int;
  4520. last?: Int;
  4521. }
  4522. ) => T;
  4523. comments: <T = Promise<AsyncIterator<CommentSubscription>>>(
  4524. args?: {
  4525. where?: CommentWhereInput;
  4526. orderBy?: CommentOrderByInput;
  4527. skip?: Int;
  4528. after?: String;
  4529. before?: String;
  4530. first?: Int;
  4531. last?: Int;
  4532. }
  4533. ) => T;
  4534. measurements: <T = Promise<AsyncIterator<MeasurementSubscription>>>(
  4535. args?: {
  4536. where?: MeasurementWhereInput;
  4537. orderBy?: MeasurementOrderByInput;
  4538. skip?: Int;
  4539. after?: String;
  4540. before?: String;
  4541. first?: Int;
  4542. last?: Int;
  4543. }
  4544. ) => T;
  4545. setup: <T = SetupSubscription>() => T;
  4546. }
  4547. export interface User {
  4548. id: ID_Output;
  4549. email: String;
  4550. name: String;
  4551. abbreviation: String;
  4552. password: String;
  4553. }
  4554. export interface UserPromise extends Promise<User>, Fragmentable {
  4555. id: () => Promise<ID_Output>;
  4556. email: () => Promise<String>;
  4557. name: () => Promise<String>;
  4558. abbreviation: () => Promise<String>;
  4559. password: () => Promise<String>;
  4560. images: <T = FragmentableArray<File>>(
  4561. args?: {
  4562. where?: FileWhereInput;
  4563. orderBy?: FileOrderByInput;
  4564. skip?: Int;
  4565. after?: String;
  4566. before?: String;
  4567. first?: Int;
  4568. last?: Int;
  4569. }
  4570. ) => T;
  4571. }
  4572. export interface UserSubscription
  4573. extends Promise<AsyncIterator<User>>,
  4574. Fragmentable {
  4575. id: () => Promise<AsyncIterator<ID_Output>>;
  4576. email: () => Promise<AsyncIterator<String>>;
  4577. name: () => Promise<AsyncIterator<String>>;
  4578. abbreviation: () => Promise<AsyncIterator<String>>;
  4579. password: () => Promise<AsyncIterator<String>>;
  4580. images: <T = Promise<AsyncIterator<FileSubscription>>>(
  4581. args?: {
  4582. where?: FileWhereInput;
  4583. orderBy?: FileOrderByInput;
  4584. skip?: Int;
  4585. after?: String;
  4586. before?: String;
  4587. first?: Int;
  4588. last?: Int;
  4589. }
  4590. ) => T;
  4591. }
  4592. export interface Event {
  4593. id: ID_Output;
  4594. type: String;
  4595. when: DateTimeOutput;
  4596. }
  4597. export interface EventPromise extends Promise<Event>, Fragmentable {
  4598. id: () => Promise<ID_Output>;
  4599. type: () => Promise<String>;
  4600. when: () => Promise<DateTimeOutput>;
  4601. }
  4602. export interface EventSubscription
  4603. extends Promise<AsyncIterator<Event>>,
  4604. Fragmentable {
  4605. id: () => Promise<AsyncIterator<ID_Output>>;
  4606. type: () => Promise<AsyncIterator<String>>;
  4607. when: () => Promise<AsyncIterator<DateTimeOutput>>;
  4608. }
  4609. export interface Comment {
  4610. id: ID_Output;
  4611. text?: String;
  4612. createdAt: DateTimeOutput;
  4613. }
  4614. export interface CommentPromise extends Promise<Comment>, Fragmentable {
  4615. id: () => Promise<ID_Output>;
  4616. text: () => Promise<String>;
  4617. createdAt: () => Promise<DateTimeOutput>;
  4618. previousVersion: <T = CommentPromise>() => T;
  4619. }
  4620. export interface CommentSubscription
  4621. extends Promise<AsyncIterator<Comment>>,
  4622. Fragmentable {
  4623. id: () => Promise<AsyncIterator<ID_Output>>;
  4624. text: () => Promise<AsyncIterator<String>>;
  4625. createdAt: () => Promise<AsyncIterator<DateTimeOutput>>;
  4626. previousVersion: <T = CommentSubscription>() => T;
  4627. }
  4628. export interface Measurement {
  4629. id: ID_Output;
  4630. createdAt: DateTimeOutput;
  4631. intValue?: Int;
  4632. floatValue?: Float;
  4633. stringValue?: String;
  4634. }
  4635. export interface MeasurementPromise extends Promise<Measurement>, Fragmentable {
  4636. id: () => Promise<ID_Output>;
  4637. createdAt: () => Promise<DateTimeOutput>;
  4638. intValue: () => Promise<Int>;
  4639. floatValue: () => Promise<Float>;
  4640. stringValue: () => Promise<String>;
  4641. }
  4642. export interface MeasurementSubscription
  4643. extends Promise<AsyncIterator<Measurement>>,
  4644. Fragmentable {
  4645. id: () => Promise<AsyncIterator<ID_Output>>;
  4646. createdAt: () => Promise<AsyncIterator<DateTimeOutput>>;
  4647. intValue: () => Promise<AsyncIterator<Int>>;
  4648. floatValue: () => Promise<AsyncIterator<Float>>;
  4649. stringValue: () => Promise<AsyncIterator<String>>;
  4650. }
  4651. export interface Setup {
  4652. id: ID_Output;
  4653. name: String;
  4654. description: String;
  4655. }
  4656. export interface SetupPromise extends Promise<Setup>, Fragmentable {
  4657. id: () => Promise<ID_Output>;
  4658. name: () => Promise<String>;
  4659. description: () => Promise<String>;
  4660. images: <T = FragmentableArray<File>>(
  4661. args?: {
  4662. where?: FileWhereInput;
  4663. orderBy?: FileOrderByInput;
  4664. skip?: Int;
  4665. after?: String;
  4666. before?: String;
  4667. first?: Int;
  4668. last?: Int;
  4669. }
  4670. ) => T;
  4671. comments: <T = FragmentableArray<Comment>>(
  4672. args?: {
  4673. where?: CommentWhereInput;
  4674. orderBy?: CommentOrderByInput;
  4675. skip?: Int;
  4676. after?: String;
  4677. before?: String;
  4678. first?: Int;
  4679. last?: Int;
  4680. }
  4681. ) => T;
  4682. setupHardware: <T = FragmentableArray<SetupHardwareInstance>>(
  4683. args?: {
  4684. where?: SetupHardwareInstanceWhereInput;
  4685. orderBy?: SetupHardwareInstanceOrderByInput;
  4686. skip?: Int;
  4687. after?: String;
  4688. before?: String;
  4689. first?: Int;
  4690. last?: Int;
  4691. }
  4692. ) => T;
  4693. instruments: <T = FragmentableArray<InstrumentInstance>>(
  4694. args?: {
  4695. where?: InstrumentInstanceWhereInput;
  4696. orderBy?: InstrumentInstanceOrderByInput;
  4697. skip?: Int;
  4698. after?: String;
  4699. before?: String;
  4700. first?: Int;
  4701. last?: Int;
  4702. }
  4703. ) => T;
  4704. }
  4705. export interface SetupSubscription
  4706. extends Promise<AsyncIterator<Setup>>,
  4707. Fragmentable {
  4708. id: () => Promise<AsyncIterator<ID_Output>>;
  4709. name: () => Promise<AsyncIterator<String>>;
  4710. description: () => Promise<AsyncIterator<String>>;
  4711. images: <T = Promise<AsyncIterator<FileSubscription>>>(
  4712. args?: {
  4713. where?: FileWhereInput;
  4714. orderBy?: FileOrderByInput;
  4715. skip?: Int;
  4716. after?: String;
  4717. before?: String;
  4718. first?: Int;
  4719. last?: Int;
  4720. }
  4721. ) => T;
  4722. comments: <T = Promise<AsyncIterator<CommentSubscription>>>(
  4723. args?: {
  4724. where?: CommentWhereInput;
  4725. orderBy?: CommentOrderByInput;
  4726. skip?: Int;
  4727. after?: String;
  4728. before?: String;
  4729. first?: Int;
  4730. last?: Int;
  4731. }
  4732. ) => T;
  4733. setupHardware: <
  4734. T = Promise<AsyncIterator<SetupHardwareInstanceSubscription>>
  4735. >(
  4736. args?: {
  4737. where?: SetupHardwareInstanceWhereInput;
  4738. orderBy?: SetupHardwareInstanceOrderByInput;
  4739. skip?: Int;
  4740. after?: String;
  4741. before?: String;
  4742. first?: Int;
  4743. last?: Int;
  4744. }
  4745. ) => T;
  4746. instruments: <T = Promise<AsyncIterator<InstrumentInstanceSubscription>>>(
  4747. args?: {
  4748. where?: InstrumentInstanceWhereInput;
  4749. orderBy?: InstrumentInstanceOrderByInput;
  4750. skip?: Int;
  4751. after?: String;
  4752. before?: String;
  4753. first?: Int;
  4754. last?: Int;
  4755. }
  4756. ) => T;
  4757. }
  4758. export interface SetupHardwareInstance {
  4759. id: ID_Output;
  4760. identifier: String;
  4761. }
  4762. export interface SetupHardwareInstancePromise
  4763. extends Promise<SetupHardwareInstance>,
  4764. Fragmentable {
  4765. id: () => Promise<ID_Output>;
  4766. setupHardware: <T = SetupHardwarePromise>() => T;
  4767. identifier: () => Promise<String>;
  4768. images: <T = FragmentableArray<File>>(
  4769. args?: {
  4770. where?: FileWhereInput;
  4771. orderBy?: FileOrderByInput;
  4772. skip?: Int;
  4773. after?: String;
  4774. before?: String;
  4775. first?: Int;
  4776. last?: Int;
  4777. }
  4778. ) => T;
  4779. }
  4780. export interface SetupHardwareInstanceSubscription
  4781. extends Promise<AsyncIterator<SetupHardwareInstance>>,
  4782. Fragmentable {
  4783. id: () => Promise<AsyncIterator<ID_Output>>;
  4784. setupHardware: <T = SetupHardwareSubscription>() => T;
  4785. identifier: () => Promise<AsyncIterator<String>>;
  4786. images: <T = Promise<AsyncIterator<FileSubscription>>>(
  4787. args?: {
  4788. where?: FileWhereInput;
  4789. orderBy?: FileOrderByInput;
  4790. skip?: Int;
  4791. after?: String;
  4792. before?: String;
  4793. first?: Int;
  4794. last?: Int;
  4795. }
  4796. ) => T;
  4797. }
  4798. export interface SetupHardware {
  4799. id: ID_Output;
  4800. name: String;
  4801. description?: String;
  4802. }
  4803. export interface SetupHardwarePromise
  4804. extends Promise<SetupHardware>,
  4805. Fragmentable {
  4806. id: () => Promise<ID_Output>;
  4807. name: () => Promise<String>;
  4808. description: () => Promise<String>;
  4809. images: <T = FragmentableArray<File>>(
  4810. args?: {
  4811. where?: FileWhereInput;
  4812. orderBy?: FileOrderByInput;
  4813. skip?: Int;
  4814. after?: String;
  4815. before?: String;
  4816. first?: Int;
  4817. last?: Int;
  4818. }
  4819. ) => T;
  4820. }
  4821. export interface SetupHardwareSubscription
  4822. extends Promise<AsyncIterator<SetupHardware>>,
  4823. Fragmentable {
  4824. id: () => Promise<AsyncIterator<ID_Output>>;
  4825. name: () => Promise<AsyncIterator<String>>;
  4826. description: () => Promise<AsyncIterator<String>>;
  4827. images: <T = Promise<AsyncIterator<FileSubscription>>>(
  4828. args?: {
  4829. where?: FileWhereInput;
  4830. orderBy?: FileOrderByInput;
  4831. skip?: Int;
  4832. after?: String;
  4833. before?: String;
  4834. first?: Int;
  4835. last?: Int;
  4836. }
  4837. ) => T;
  4838. }
  4839. export interface InstrumentInstance {
  4840. id: ID_Output;
  4841. identifier: String;
  4842. interface: String[];
  4843. label?: String;
  4844. location?: String;
  4845. }
  4846. export interface InstrumentInstancePromise
  4847. extends Promise<InstrumentInstance>,
  4848. Fragmentable {
  4849. id: () => Promise<ID_Output>;
  4850. instrument: <T = InstrumentPromise>() => T;
  4851. identifier: () => Promise<String>;
  4852. interface: () => Promise<String[]>;
  4853. label: () => Promise<String>;
  4854. location: () => Promise<String>;
  4855. }
  4856. export interface InstrumentInstanceSubscription
  4857. extends Promise<AsyncIterator<InstrumentInstance>>,
  4858. Fragmentable {
  4859. id: () => Promise<AsyncIterator<ID_Output>>;
  4860. instrument: <T = InstrumentSubscription>() => T;
  4861. identifier: () => Promise<AsyncIterator<String>>;
  4862. interface: () => Promise<AsyncIterator<String[]>>;
  4863. label: () => Promise<AsyncIterator<String>>;
  4864. location: () => Promise<AsyncIterator<String>>;
  4865. }
  4866. export interface Instrument {
  4867. id: ID_Output;
  4868. name: String;
  4869. description?: String;
  4870. interfaces: String[];
  4871. }
  4872. export interface InstrumentPromise extends Promise<Instrument>, Fragmentable {
  4873. id: () => Promise<ID_Output>;
  4874. name: () => Promise<String>;
  4875. description: () => Promise<String>;
  4876. documents: <T = FragmentableArray<File>>(
  4877. args?: {
  4878. where?: FileWhereInput;
  4879. orderBy?: FileOrderByInput;
  4880. skip?: Int;
  4881. after?: String;
  4882. before?: String;
  4883. first?: Int;
  4884. last?: Int;
  4885. }
  4886. ) => T;
  4887. interfaces: () => Promise<String[]>;
  4888. commands: <T = FragmentableArray<InstrumentCommand>>(
  4889. args?: {
  4890. where?: InstrumentCommandWhereInput;
  4891. orderBy?: InstrumentCommandOrderByInput;
  4892. skip?: Int;
  4893. after?: String;
  4894. before?: String;
  4895. first?: Int;
  4896. last?: Int;
  4897. }
  4898. ) => T;
  4899. parameters: <T = FragmentableArray<InstrumentParameter>>(
  4900. args?: {
  4901. where?: InstrumentParameterWhereInput;
  4902. orderBy?: InstrumentParameterOrderByInput;
  4903. skip?: Int;
  4904. after?: String;
  4905. before?: String;
  4906. first?: Int;
  4907. last?: Int;
  4908. }
  4909. ) => T;
  4910. subsystems: <T = FragmentableArray<InstrumentSubsystem>>(
  4911. args?: {
  4912. where?: InstrumentSubsystemWhereInput;
  4913. orderBy?: InstrumentSubsystemOrderByInput;
  4914. skip?: Int;
  4915. after?: String;
  4916. before?: String;
  4917. first?: Int;
  4918. last?: Int;
  4919. }
  4920. ) => T;
  4921. }
  4922. export interface InstrumentSubscription
  4923. extends Promise<AsyncIterator<Instrument>>,
  4924. Fragmentable {
  4925. id: () => Promise<AsyncIterator<ID_Output>>;
  4926. name: () => Promise<AsyncIterator<String>>;
  4927. description: () => Promise<AsyncIterator<String>>;
  4928. documents: <T = Promise<AsyncIterator<FileSubscription>>>(
  4929. args?: {
  4930. where?: FileWhereInput;
  4931. orderBy?: FileOrderByInput;
  4932. skip?: Int;
  4933. after?: String;
  4934. before?: String;
  4935. first?: Int;
  4936. last?: Int;
  4937. }
  4938. ) => T;
  4939. interfaces: () => Promise<AsyncIterator<String[]>>;
  4940. commands: <T = Promise<AsyncIterator<InstrumentCommandSubscription>>>(
  4941. args?: {
  4942. where?: InstrumentCommandWhereInput;
  4943. orderBy?: InstrumentCommandOrderByInput;
  4944. skip?: Int;
  4945. after?: String;
  4946. before?: String;
  4947. first?: Int;
  4948. last?: Int;
  4949. }
  4950. ) => T;
  4951. parameters: <T = Promise<AsyncIterator<InstrumentParameterSubscription>>>(
  4952. args?: {
  4953. where?: InstrumentParameterWhereInput;
  4954. orderBy?: InstrumentParameterOrderByInput;
  4955. skip?: Int;
  4956. after?: String;
  4957. before?: String;
  4958. first?: Int;
  4959. last?: Int;
  4960. }
  4961. ) => T;
  4962. subsystems: <T = Promise<AsyncIterator<InstrumentSubsystemSubscription>>>(
  4963. args?: {
  4964. where?: InstrumentSubsystemWhereInput;
  4965. orderBy?: InstrumentSubsystemOrderByInput;
  4966. skip?: Int;
  4967. after?: String;
  4968. before?: String;
  4969. first?: Int;
  4970. last?: Int;
  4971. }
  4972. ) => T;
  4973. }
  4974. export interface InstrumentCommand {
  4975. id: ID_Output;
  4976. tag: String;
  4977. name?: String;
  4978. description: String;
  4979. readString?: String;
  4980. writeString?: String;
  4981. }
  4982. export interface InstrumentCommandPromise
  4983. extends Promise<InstrumentCommand>,
  4984. Fragmentable {
  4985. id: () => Promise<ID_Output>;
  4986. tag: () => Promise<String>;
  4987. name: () => Promise<String>;
  4988. description: () => Promise<String>;
  4989. instrument: <T = InstrumentPromise>() => T;
  4990. readString: () => Promise<String>;
  4991. writeString: () => Promise<String>;
  4992. parameters: <T = FragmentableArray<InstrumentParameter>>(
  4993. args?: {
  4994. where?: InstrumentParameterWhereInput;
  4995. orderBy?: InstrumentParameterOrderByInput;
  4996. skip?: Int;
  4997. after?: String;
  4998. before?: String;
  4999. first?: Int;
  5000. last?: Int;
  5001. }
  5002. ) => T;
  5003. }
  5004. export interface InstrumentCommandSubscription
  5005. extends Promise<AsyncIterator<InstrumentCommand>>,
  5006. Fragmentable {
  5007. id: () => Promise<AsyncIterator<ID_Output>>;
  5008. tag: () => Promise<AsyncIterator<String>>;
  5009. name: () => Promise<AsyncIterator<String>>;
  5010. description: () => Promise<AsyncIterator<String>>;
  5011. instrument: <T = InstrumentSubscription>() => T;
  5012. readString: () => Promise<AsyncIterator<String>>;
  5013. writeString: () => Promise<AsyncIterator<String>>;
  5014. parameters: <T = Promise<AsyncIterator<InstrumentParameterSubscription>>>(
  5015. args?: {
  5016. where?: InstrumentParameterWhereInput;
  5017. orderBy?: InstrumentParameterOrderByInput;
  5018. skip?: Int;
  5019. after?: String;
  5020. before?: String;
  5021. first?: Int;
  5022. last?: Int;
  5023. }
  5024. ) => T;
  5025. }
  5026. export interface InstrumentParameter {
  5027. id: ID_Output;
  5028. tag: String;
  5029. name?: String;
  5030. description?: String;
  5031. type: String;
  5032. values?: String;
  5033. }
  5034. export interface InstrumentParameterPromise
  5035. extends Promise<InstrumentParameter>,
  5036. Fragmentable {
  5037. id: () => Promise<ID_Output>;
  5038. tag: () => Promise<String>;
  5039. name: () => Promise<String>;
  5040. description: () => Promise<String>;
  5041. type: () => Promise<String>;
  5042. values: () => Promise<String>;
  5043. }
  5044. export interface InstrumentParameterSubscription
  5045. extends Promise<AsyncIterator<InstrumentParameter>>,
  5046. Fragmentable {
  5047. id: () => Promise<AsyncIterator<ID_Output>>;
  5048. tag: () => Promise<AsyncIterator<String>>;
  5049. name: () => Promise<AsyncIterator<String>>;
  5050. description: () => Promise<AsyncIterator<String>>;
  5051. type: () => Promise<AsyncIterator<String>>;
  5052. values: () => Promise<AsyncIterator<String>>;
  5053. }
  5054. export interface InstrumentSubsystem {
  5055. id: ID_Output;
  5056. name?: String;
  5057. description: String;
  5058. }
  5059. export interface InstrumentSubsystemPromise
  5060. extends Promise<InstrumentSubsystem>,
  5061. Fragmentable {
  5062. id: () => Promise<ID_Output>;
  5063. name: () => Promise<String>;
  5064. description: () => Promise<String>;
  5065. commands: <T = FragmentableArray<InstrumentCommand>>(
  5066. args?: {
  5067. where?: InstrumentCommandWhereInput;
  5068. orderBy?: InstrumentCommandOrderByInput;
  5069. skip?: Int;
  5070. after?: String;
  5071. before?: String;
  5072. first?: Int;
  5073. last?: Int;
  5074. }
  5075. ) => T;
  5076. parameters: <T = FragmentableArray<InstrumentParameter>>(
  5077. args?: {
  5078. where?: InstrumentParameterWhereInput;
  5079. orderBy?: InstrumentParameterOrderByInput;
  5080. skip?: Int;
  5081. after?: String;
  5082. before?: String;
  5083. first?: Int;
  5084. last?: Int;
  5085. }
  5086. ) => T;
  5087. subsystems: <T = FragmentableArray<InstrumentSubsystem>>(
  5088. args?: {
  5089. where?: InstrumentSubsystemWhereInput;
  5090. orderBy?: InstrumentSubsystemOrderByInput;
  5091. skip?: Int;
  5092. after?: String;
  5093. before?: String;
  5094. first?: Int;
  5095. last?: Int;
  5096. }
  5097. ) => T;
  5098. }
  5099. export interface InstrumentSubsystemSubscription
  5100. extends Promise<AsyncIterator<InstrumentSubsystem>>,
  5101. Fragmentable {
  5102. id: () => Promise<AsyncIterator<ID_Output>>;
  5103. name: () => Promise<AsyncIterator<String>>;
  5104. description: () => Promise<AsyncIterator<String>>;
  5105. commands: <T = Promise<AsyncIterator<InstrumentCommandSubscription>>>(
  5106. args?: {
  5107. where?: InstrumentCommandWhereInput;
  5108. orderBy?: InstrumentCommandOrderByInput;
  5109. skip?: Int;
  5110. after?: String;
  5111. before?: String;
  5112. first?: Int;
  5113. last?: Int;
  5114. }
  5115. ) => T;
  5116. parameters: <T = Promise<AsyncIterator<InstrumentParameterSubscription>>>(
  5117. args?: {
  5118. where?: InstrumentParameterWhereInput;
  5119. orderBy?: InstrumentParameterOrderByInput;
  5120. skip?: Int;
  5121. after?: String;
  5122. before?: String;
  5123. first?: Int;
  5124. last?: Int;
  5125. }
  5126. ) => T;
  5127. subsystems: <T = Promise<AsyncIterator<InstrumentSubsystemSubscription>>>(
  5128. args?: {
  5129. where?: InstrumentSubsystemWhereInput;
  5130. orderBy?: InstrumentSubsystemOrderByInput;
  5131. skip?: Int;
  5132. after?: String;
  5133. before?: String;
  5134. first?: Int;
  5135. last?: Int;
  5136. }
  5137. ) => T;
  5138. }
  5139. export interface CharacterizationConnection {
  5140. pageInfo: PageInfo;
  5141. edges: CharacterizationEdge[];
  5142. }
  5143. export interface CharacterizationConnectionPromise
  5144. extends Promise<CharacterizationConnection>,
  5145. Fragmentable {
  5146. pageInfo: <T = PageInfoPromise>() => T;
  5147. edges: <T = FragmentableArray<CharacterizationEdge>>() => T;
  5148. aggregate: <T = AggregateCharacterizationPromise>() => T;
  5149. }
  5150. export interface CharacterizationConnectionSubscription
  5151. extends Promise<AsyncIterator<CharacterizationConnection>>,
  5152. Fragmentable {
  5153. pageInfo: <T = PageInfoSubscription>() => T;
  5154. edges: <T = Promise<AsyncIterator<CharacterizationEdgeSubscription>>>() => T;
  5155. aggregate: <T = AggregateCharacterizationSubscription>() => T;
  5156. }
  5157. export interface PageInfo {
  5158. hasNextPage: Boolean;
  5159. hasPreviousPage: Boolean;
  5160. startCursor?: String;
  5161. endCursor?: String;
  5162. }
  5163. export interface PageInfoPromise extends Promise<PageInfo>, Fragmentable {
  5164. hasNextPage: () => Promise<Boolean>;
  5165. hasPreviousPage: () => Promise<Boolean>;
  5166. startCursor: () => Promise<String>;
  5167. endCursor: () => Promise<String>;
  5168. }
  5169. export interface PageInfoSubscription
  5170. extends Promise<AsyncIterator<PageInfo>>,
  5171. Fragmentable {
  5172. hasNextPage: () => Promise<AsyncIterator<Boolean>>;
  5173. hasPreviousPage: () => Promise<AsyncIterator<Boolean>>;
  5174. startCursor: () => Promise<AsyncIterator<String>>;
  5175. endCursor: () => Promise<AsyncIterator<String>>;
  5176. }
  5177. export interface CharacterizationEdge {
  5178. node: Characterization;
  5179. cursor: String;
  5180. }
  5181. export interface CharacterizationEdgePromise
  5182. extends Promise<CharacterizationEdge>,
  5183. Fragmentable {
  5184. node: <T = CharacterizationPromise>() => T;
  5185. cursor: () => Promise<String>;
  5186. }
  5187. export interface CharacterizationEdgeSubscription
  5188. extends Promise<AsyncIterator<CharacterizationEdge>>,
  5189. Fragmentable {
  5190. node: <T = CharacterizationSubscription>() => T;
  5191. cursor: () => Promise<AsyncIterator<String>>;
  5192. }
  5193. export interface AggregateCharacterization {
  5194. count: Int;
  5195. }
  5196. export interface AggregateCharacterizationPromise
  5197. extends Promise<AggregateCharacterization>,
  5198. Fragmentable {
  5199. count: () => Promise<Int>;
  5200. }
  5201. export interface AggregateCharacterizationSubscription
  5202. extends Promise<AsyncIterator<AggregateCharacterization>>,
  5203. Fragmentable {
  5204. count: () => Promise<AsyncIterator<Int>>;
  5205. }
  5206. export interface CommentConnection {
  5207. pageInfo: PageInfo;
  5208. edges: CommentEdge[];
  5209. }
  5210. export interface CommentConnectionPromise
  5211. extends Promise<CommentConnection>,
  5212. Fragmentable {
  5213. pageInfo: <T = PageInfoPromise>() => T;
  5214. edges: <T = FragmentableArray<CommentEdge>>() => T;
  5215. aggregate: <T = AggregateCommentPromise>() => T;
  5216. }
  5217. export interface CommentConnectionSubscription
  5218. extends Promise<AsyncIterator<CommentConnection>>,
  5219. Fragmentable {
  5220. pageInfo: <T = PageInfoSubscription>() => T;
  5221. edges: <T = Promise<AsyncIterator<CommentEdgeSubscription>>>() => T;
  5222. aggregate: <T = AggregateCommentSubscription>() => T;
  5223. }
  5224. export interface CommentEdge {
  5225. node: Comment;
  5226. cursor: String;
  5227. }
  5228. export interface CommentEdgePromise extends Promise<CommentEdge>, Fragmentable {
  5229. node: <T = CommentPromise>() => T;
  5230. cursor: () => Promise<String>;
  5231. }
  5232. export interface CommentEdgeSubscription
  5233. extends Promise<AsyncIterator<CommentEdge>>,
  5234. Fragmentable {
  5235. node: <T = CommentSubscription>() => T;
  5236. cursor: () => Promise<AsyncIterator<String>>;
  5237. }
  5238. export interface AggregateComment {
  5239. count: Int;
  5240. }
  5241. export interface AggregateCommentPromise
  5242. extends Promise<AggregateComment>,
  5243. Fragmentable {
  5244. count: () => Promise<Int>;
  5245. }
  5246. export interface AggregateCommentSubscription
  5247. extends Promise<AsyncIterator<AggregateComment>>,
  5248. Fragmentable {
  5249. count: () => Promise<AsyncIterator<Int>>;
  5250. }
  5251. export interface DUT {
  5252. id: ID_Output;
  5253. name: String;
  5254. description?: String;
  5255. modifications: String[];
  5256. }
  5257. export interface DUTPromise extends Promise<DUT>, Fragmentable {
  5258. id: () => Promise<ID_Output>;
  5259. name: () => Promise<String>;
  5260. description: () => Promise<String>;
  5261. project: <T = ProjectVersionPromise>() => T;
  5262. modifications: () => Promise<String[]>;
  5263. }
  5264. export interface DUTSubscription
  5265. extends Promise<AsyncIterator<DUT>>,
  5266. Fragmentable {
  5267. id: () => Promise<AsyncIterator<ID_Output>>;
  5268. name: () => Promise<AsyncIterator<String>>;
  5269. description: () => Promise<AsyncIterator<String>>;
  5270. project: <T = ProjectVersionSubscription>() => T;
  5271. modifications: () => Promise<AsyncIterator<String[]>>;
  5272. }
  5273. export interface ProjectVersion {
  5274. id: ID_Output;
  5275. name: String;
  5276. changes: String;
  5277. date: DateTimeOutput;
  5278. }
  5279. export interface ProjectVersionPromise
  5280. extends Promise<ProjectVersion>,
  5281. Fragmentable {
  5282. id: () => Promise<ID_Output>;
  5283. name: () => Promise<String>;
  5284. changes: () => Promise<String>;
  5285. date: () => Promise<DateTimeOutput>;
  5286. }
  5287. export interface ProjectVersionSubscription
  5288. extends Promise<AsyncIterator<ProjectVersion>>,
  5289. Fragmentable {
  5290. id: () => Promise<AsyncIterator<ID_Output>>;
  5291. name: () => Promise<AsyncIterator<String>>;
  5292. changes: () => Promise<AsyncIterator<String>>;
  5293. date: () => Promise<AsyncIterator<DateTimeOutput>>;
  5294. }
  5295. export interface DUTConnection {
  5296. pageInfo: PageInfo;
  5297. edges: DUTEdge[];
  5298. }
  5299. export interface DUTConnectionPromise
  5300. extends Promise<DUTConnection>,
  5301. Fragmentable {
  5302. pageInfo: <T = PageInfoPromise>() => T;
  5303. edges: <T = FragmentableArray<DUTEdge>>() => T;
  5304. aggregate: <T = AggregateDUTPromise>() => T;
  5305. }
  5306. export interface DUTConnectionSubscription
  5307. extends Promise<AsyncIterator<DUTConnection>>,
  5308. Fragmentable {
  5309. pageInfo: <T = PageInfoSubscription>() => T;
  5310. edges: <T = Promise<AsyncIterator<DUTEdgeSubscription>>>() => T;
  5311. aggregate: <T = AggregateDUTSubscription>() => T;
  5312. }
  5313. export interface DUTEdge {
  5314. node: DUT;
  5315. cursor: String;
  5316. }
  5317. export interface DUTEdgePromise extends Promise<DUTEdge>, Fragmentable {
  5318. node: <T = DUTPromise>() => T;
  5319. cursor: () => Promise<String>;
  5320. }
  5321. export interface DUTEdgeSubscription
  5322. extends Promise<AsyncIterator<DUTEdge>>,
  5323. Fragmentable {
  5324. node: <T = DUTSubscription>() => T;
  5325. cursor: () => Promise<AsyncIterator<String>>;
  5326. }
  5327. export interface AggregateDUT {
  5328. count: Int;
  5329. }
  5330. export interface AggregateDUTPromise
  5331. extends Promise<AggregateDUT>,
  5332. Fragmentable {
  5333. count: () => Promise<Int>;
  5334. }
  5335. export interface AggregateDUTSubscription
  5336. extends Promise<AsyncIterator<AggregateDUT>>,
  5337. Fragmentable {
  5338. count: () => Promise<AsyncIterator<Int>>;
  5339. }
  5340. export interface EventConnection {
  5341. pageInfo: PageInfo;
  5342. edges: EventEdge[];
  5343. }
  5344. export interface EventConnectionPromise
  5345. extends Promise<EventConnection>,
  5346. Fragmentable {
  5347. pageInfo: <T = PageInfoPromise>() => T;
  5348. edges: <T = FragmentableArray<EventEdge>>() => T;
  5349. aggregate: <T = AggregateEventPromise>() => T;
  5350. }
  5351. export interface EventConnectionSubscription
  5352. extends Promise<AsyncIterator<EventConnection>>,
  5353. Fragmentable {
  5354. pageInfo: <T = PageInfoSubscription>() => T;
  5355. edges: <T = Promise<AsyncIterator<EventEdgeSubscription>>>() => T;
  5356. aggregate: <T = AggregateEventSubscription>() => T;
  5357. }
  5358. export interface EventEdge {
  5359. node: Event;
  5360. cursor: String;
  5361. }
  5362. export interface EventEdgePromise extends Promise<EventEdge>, Fragmentable {
  5363. node: <T = EventPromise>() => T;
  5364. cursor: () => Promise<String>;
  5365. }
  5366. export interface EventEdgeSubscription
  5367. extends Promise<AsyncIterator<EventEdge>>,
  5368. Fragmentable {
  5369. node: <T = EventSubscription>() => T;
  5370. cursor: () => Promise<AsyncIterator<String>>;
  5371. }
  5372. export interface AggregateEvent {
  5373. count: Int;
  5374. }
  5375. export interface AggregateEventPromise
  5376. extends Promise<AggregateEvent>,
  5377. Fragmentable {
  5378. count: () => Promise<Int>;
  5379. }
  5380. export interface AggregateEventSubscription
  5381. extends Promise<AsyncIterator<AggregateEvent>>,
  5382. Fragmentable {
  5383. count: () => Promise<AsyncIterator<Int>>;
  5384. }
  5385. export interface FileConnection {
  5386. pageInfo: PageInfo;
  5387. edges: FileEdge[];
  5388. }
  5389. export interface FileConnectionPromise
  5390. extends Promise<FileConnection>,
  5391. Fragmentable {
  5392. pageInfo: <T = PageInfoPromise>() => T;
  5393. edges: <T = FragmentableArray<FileEdge>>() => T;
  5394. aggregate: <T = AggregateFilePromise>() => T;
  5395. }
  5396. export interface FileConnectionSubscription
  5397. extends Promise<AsyncIterator<FileConnection>>,
  5398. Fragmentable {
  5399. pageInfo: <T = PageInfoSubscription>() => T;
  5400. edges: <T = Promise<AsyncIterator<FileEdgeSubscription>>>() => T;
  5401. aggregate: <T = AggregateFileSubscription>() => T;
  5402. }
  5403. export interface FileEdge {
  5404. node: File;
  5405. cursor: String;
  5406. }
  5407. export interface FileEdgePromise extends Promise<FileEdge>, Fragmentable {
  5408. node: <T = FilePromise>() => T;
  5409. cursor: () => Promise<String>;
  5410. }
  5411. export interface FileEdgeSubscription
  5412. extends Promise<AsyncIterator<FileEdge>>,
  5413. Fragmentable {
  5414. node: <T = FileSubscription>() => T;
  5415. cursor: () => Promise<AsyncIterator<String>>;
  5416. }
  5417. export interface AggregateFile {
  5418. count: Int;
  5419. }
  5420. export interface AggregateFilePromise
  5421. extends Promise<AggregateFile>,
  5422. Fragmentable {
  5423. count: () => Promise<Int>;
  5424. }
  5425. export interface AggregateFileSubscription
  5426. extends Promise<AsyncIterator<AggregateFile>>,
  5427. Fragmentable {
  5428. count: () => Promise<AsyncIterator<Int>>;
  5429. }
  5430. export interface InstrumentConnection {
  5431. pageInfo: PageInfo;
  5432. edges: InstrumentEdge[];
  5433. }
  5434. export interface InstrumentConnectionPromise
  5435. extends Promise<InstrumentConnection>,
  5436. Fragmentable {
  5437. pageInfo: <T = PageInfoPromise>() => T;
  5438. edges: <T = FragmentableArray<InstrumentEdge>>() => T;
  5439. aggregate: <T = AggregateInstrumentPromise>() => T;
  5440. }
  5441. export interface InstrumentConnectionSubscription
  5442. extends Promise<AsyncIterator<InstrumentConnection>>,
  5443. Fragmentable {
  5444. pageInfo: <T = PageInfoSubscription>() => T;
  5445. edges: <T = Promise<AsyncIterator<InstrumentEdgeSubscription>>>() => T;
  5446. aggregate: <T = AggregateInstrumentSubscription>() => T;
  5447. }
  5448. export interface InstrumentEdge {
  5449. node: Instrument;
  5450. cursor: String;
  5451. }
  5452. export interface InstrumentEdgePromise
  5453. extends Promise<InstrumentEdge>,
  5454. Fragmentable {
  5455. node: <T = InstrumentPromise>() => T;
  5456. cursor: () => Promise<String>;
  5457. }
  5458. export interface InstrumentEdgeSubscription
  5459. extends Promise<AsyncIterator<InstrumentEdge>>,
  5460. Fragmentable {
  5461. node: <T = InstrumentSubscription>() => T;
  5462. cursor: () => Promise<AsyncIterator<String>>;
  5463. }
  5464. export interface AggregateInstrument {
  5465. count: Int;
  5466. }
  5467. export interface AggregateInstrumentPromise
  5468. extends Promise<AggregateInstrument>,
  5469. Fragmentable {
  5470. count: () => Promise<Int>;
  5471. }
  5472. export interface AggregateInstrumentSubscription
  5473. extends Promise<AsyncIterator<AggregateInstrument>>,
  5474. Fragmentable {
  5475. count: () => Promise<AsyncIterator<Int>>;
  5476. }
  5477. export interface InstrumentCommandConnection {
  5478. pageInfo: PageInfo;
  5479. edges: InstrumentCommandEdge[];
  5480. }
  5481. export interface InstrumentCommandConnectionPromise
  5482. extends Promise<InstrumentCommandConnection>,
  5483. Fragmentable {
  5484. pageInfo: <T = PageInfoPromise>() => T;
  5485. edges: <T = FragmentableArray<InstrumentCommandEdge>>() => T;
  5486. aggregate: <T = AggregateInstrumentCommandPromise>() => T;
  5487. }
  5488. export interface InstrumentCommandConnectionSubscription
  5489. extends Promise<AsyncIterator<InstrumentCommandConnection>>,
  5490. Fragmentable {
  5491. pageInfo: <T = PageInfoSubscription>() => T;
  5492. edges: <T = Promise<AsyncIterator<InstrumentCommandEdgeSubscription>>>() => T;
  5493. aggregate: <T = AggregateInstrumentCommandSubscription>() => T;
  5494. }
  5495. export interface InstrumentCommandEdge {
  5496. node: InstrumentCommand;
  5497. cursor: String;
  5498. }
  5499. export interface InstrumentCommandEdgePromise
  5500. extends Promise<InstrumentCommandEdge>,
  5501. Fragmentable {
  5502. node: <T = InstrumentCommandPromise>() => T;
  5503. cursor: () => Promise<String>;
  5504. }
  5505. export interface InstrumentCommandEdgeSubscription
  5506. extends Promise<AsyncIterator<InstrumentCommandEdge>>,
  5507. Fragmentable {
  5508. node: <T = InstrumentCommandSubscription>() => T;
  5509. cursor: () => Promise<AsyncIterator<String>>;
  5510. }
  5511. export interface AggregateInstrumentCommand {
  5512. count: Int;
  5513. }
  5514. export interface AggregateInstrumentCommandPromise
  5515. extends Promise<AggregateInstrumentCommand>,
  5516. Fragmentable {
  5517. count: () => Promise<Int>;
  5518. }
  5519. export interface AggregateInstrumentCommandSubscription
  5520. extends Promise<AsyncIterator<AggregateInstrumentCommand>>,
  5521. Fragmentable {
  5522. count: () => Promise<AsyncIterator<Int>>;
  5523. }
  5524. export interface InstrumentInstanceConnection {
  5525. pageInfo: PageInfo;
  5526. edges: InstrumentInstanceEdge[];
  5527. }
  5528. export interface InstrumentInstanceConnectionPromise
  5529. extends Promise<InstrumentInstanceConnection>,
  5530. Fragmentable {
  5531. pageInfo: <T = PageInfoPromise>() => T;
  5532. edges: <T = FragmentableArray<InstrumentInstanceEdge>>() => T;
  5533. aggregate: <T = AggregateInstrumentInstancePromise>() => T;
  5534. }
  5535. export interface InstrumentInstanceConnectionSubscription
  5536. extends Promise<AsyncIterator<InstrumentInstanceConnection>>,
  5537. Fragmentable {
  5538. pageInfo: <T = PageInfoSubscription>() => T;
  5539. edges: <
  5540. T = Promise<AsyncIterator<InstrumentInstanceEdgeSubscription>>
  5541. >() => T;
  5542. aggregate: <T = AggregateInstrumentInstanceSubscription>() => T;
  5543. }
  5544. export interface InstrumentInstanceEdge {
  5545. node: InstrumentInstance;
  5546. cursor: String;
  5547. }
  5548. export interface InstrumentInstanceEdgePromise
  5549. extends Promise<InstrumentInstanceEdge>,
  5550. Fragmentable {
  5551. node: <T = InstrumentInstancePromise>() => T;
  5552. cursor: () => Promise<String>;
  5553. }
  5554. export interface InstrumentInstanceEdgeSubscription
  5555. extends Promise<AsyncIterator<InstrumentInstanceEdge>>,
  5556. Fragmentable {
  5557. node: <T = InstrumentInstanceSubscription>() => T;
  5558. cursor: () => Promise<AsyncIterator<String>>;
  5559. }
  5560. export interface AggregateInstrumentInstance {
  5561. count: Int;
  5562. }
  5563. export interface AggregateInstrumentInstancePromise
  5564. extends Promise<AggregateInstrumentInstance>,
  5565. Fragmentable {
  5566. count: () => Promise<Int>;
  5567. }
  5568. export interface AggregateInstrumentInstanceSubscription
  5569. extends Promise<AsyncIterator<AggregateInstrumentInstance>>,
  5570. Fragmentable {
  5571. count: () => Promise<AsyncIterator<Int>>;
  5572. }
  5573. export interface InstrumentParameterConnection {
  5574. pageInfo: PageInfo;
  5575. edges: InstrumentParameterEdge[];
  5576. }
  5577. export interface InstrumentParameterConnectionPromise
  5578. extends Promise<InstrumentParameterConnection>,
  5579. Fragmentable {
  5580. pageInfo: <T = PageInfoPromise>() => T;
  5581. edges: <T = FragmentableArray<InstrumentParameterEdge>>() => T;
  5582. aggregate: <T = AggregateInstrumentParameterPromise>() => T;
  5583. }
  5584. export interface InstrumentParameterConnectionSubscription
  5585. extends Promise<AsyncIterator<InstrumentParameterConnection>>,
  5586. Fragmentable {
  5587. pageInfo: <T = PageInfoSubscription>() => T;
  5588. edges: <
  5589. T = Promise<AsyncIterator<InstrumentParameterEdgeSubscription>>
  5590. >() => T;
  5591. aggregate: <T = AggregateInstrumentParameterSubscription>() => T;
  5592. }
  5593. export interface InstrumentParameterEdge {
  5594. node: InstrumentParameter;
  5595. cursor: String;
  5596. }
  5597. export interface InstrumentParameterEdgePromise
  5598. extends Promise<InstrumentParameterEdge>,
  5599. Fragmentable {
  5600. node: <T = InstrumentParameterPromise>() => T;
  5601. cursor: () => Promise<String>;
  5602. }
  5603. export interface InstrumentParameterEdgeSubscription
  5604. extends Promise<AsyncIterator<InstrumentParameterEdge>>,
  5605. Fragmentable {
  5606. node: <T = InstrumentParameterSubscription>() => T;
  5607. cursor: () => Promise<AsyncIterator<String>>;
  5608. }
  5609. export interface AggregateInstrumentParameter {
  5610. count: Int;
  5611. }
  5612. export interface AggregateInstrumentParameterPromise
  5613. extends Promise<AggregateInstrumentParameter>,
  5614. Fragmentable {
  5615. count: () => Promise<Int>;
  5616. }
  5617. export interface AggregateInstrumentParameterSubscription
  5618. extends Promise<AsyncIterator<AggregateInstrumentParameter>>,
  5619. Fragmentable {
  5620. count: () => Promise<AsyncIterator<Int>>;
  5621. }
  5622. export interface InstrumentSubsystemConnection {
  5623. pageInfo: PageInfo;
  5624. edges: InstrumentSubsystemEdge[];
  5625. }
  5626. export interface InstrumentSubsystemConnectionPromise
  5627. extends Promise<InstrumentSubsystemConnection>,
  5628. Fragmentable {
  5629. pageInfo: <T = PageInfoPromise>() => T;
  5630. edges: <T = FragmentableArray<InstrumentSubsystemEdge>>() => T;
  5631. aggregate: <T = AggregateInstrumentSubsystemPromise>() => T;
  5632. }
  5633. export interface InstrumentSubsystemConnectionSubscription
  5634. extends Promise<AsyncIterator<InstrumentSubsystemConnection>>,
  5635. Fragmentable {
  5636. pageInfo: <T = PageInfoSubscription>() => T;
  5637. edges: <
  5638. T = Promise<AsyncIterator<InstrumentSubsystemEdgeSubscription>>
  5639. >() => T;
  5640. aggregate: <T = AggregateInstrumentSubsystemSubscription>() => T;
  5641. }
  5642. export interface InstrumentSubsystemEdge {
  5643. node: InstrumentSubsystem;
  5644. cursor: String;
  5645. }
  5646. export interface InstrumentSubsystemEdgePromise
  5647. extends Promise<InstrumentSubsystemEdge>,
  5648. Fragmentable {
  5649. node: <T = InstrumentSubsystemPromise>() => T;
  5650. cursor: () => Promise<String>;
  5651. }
  5652. export interface InstrumentSubsystemEdgeSubscription
  5653. extends Promise<AsyncIterator<InstrumentSubsystemEdge>>,
  5654. Fragmentable {
  5655. node: <T = InstrumentSubsystemSubscription>() => T;
  5656. cursor: () => Promise<AsyncIterator<String>>;
  5657. }
  5658. export interface AggregateInstrumentSubsystem {
  5659. count: Int;
  5660. }
  5661. export interface AggregateInstrumentSubsystemPromise
  5662. extends Promise<AggregateInstrumentSubsystem>,
  5663. Fragmentable {
  5664. count: () => Promise<Int>;
  5665. }
  5666. export interface AggregateInstrumentSubsystemSubscription
  5667. extends Promise<AsyncIterator<AggregateInstrumentSubsystem>>,
  5668. Fragmentable {
  5669. count: () => Promise<AsyncIterator<Int>>;
  5670. }
  5671. export interface MeasurementConnection {
  5672. pageInfo: PageInfo;
  5673. edges: MeasurementEdge[];
  5674. }
  5675. export interface MeasurementConnectionPromise
  5676. extends Promise<MeasurementConnection>,
  5677. Fragmentable {
  5678. pageInfo: <T = PageInfoPromise>() => T;
  5679. edges: <T = FragmentableArray<MeasurementEdge>>() => T;
  5680. aggregate: <T = AggregateMeasurementPromise>() => T;
  5681. }
  5682. export interface MeasurementConnectionSubscription
  5683. extends Promise<AsyncIterator<MeasurementConnection>>,
  5684. Fragmentable {
  5685. pageInfo: <T = PageInfoSubscription>() => T;
  5686. edges: <T = Promise<AsyncIterator<MeasurementEdgeSubscription>>>() => T;
  5687. aggregate: <T = AggregateMeasurementSubscription>() => T;
  5688. }
  5689. export interface MeasurementEdge {
  5690. node: Measurement;
  5691. cursor: String;
  5692. }
  5693. export interface MeasurementEdgePromise
  5694. extends Promise<MeasurementEdge>,
  5695. Fragmentable {
  5696. node: <T = MeasurementPromise>() => T;
  5697. cursor: () => Promise<String>;
  5698. }
  5699. export interface MeasurementEdgeSubscription
  5700. extends Promise<AsyncIterator<MeasurementEdge>>,
  5701. Fragmentable {
  5702. node: <T = MeasurementSubscription>() => T;
  5703. cursor: () => Promise<AsyncIterator<String>>;
  5704. }
  5705. export interface AggregateMeasurement {
  5706. count: Int;
  5707. }
  5708. export interface AggregateMeasurementPromise
  5709. extends Promise<AggregateMeasurement>,
  5710. Fragmentable {
  5711. count: () => Promise<Int>;
  5712. }
  5713. export interface AggregateMeasurementSubscription
  5714. extends Promise<AsyncIterator<AggregateMeasurement>>,
  5715. Fragmentable {
  5716. count: () => Promise<AsyncIterator<Int>>;
  5717. }
  5718. export interface MeasurementRunConnection {
  5719. pageInfo: PageInfo;
  5720. edges: MeasurementRunEdge[];
  5721. }
  5722. export interface MeasurementRunConnectionPromise
  5723. extends Promise<MeasurementRunConnection>,
  5724. Fragmentable {
  5725. pageInfo: <T = PageInfoPromise>() => T;
  5726. edges: <T = FragmentableArray<MeasurementRunEdge>>() => T;
  5727. aggregate: <T = AggregateMeasurementRunPromise>() => T;
  5728. }
  5729. export interface MeasurementRunConnectionSubscription
  5730. extends Promise<AsyncIterator<MeasurementRunConnection>>,
  5731. Fragmentable {
  5732. pageInfo: <T = PageInfoSubscription>() => T;
  5733. edges: <T = Promise<AsyncIterator<MeasurementRunEdgeSubscription>>>() => T;
  5734. aggregate: <T = AggregateMeasurementRunSubscription>() => T;
  5735. }
  5736. export interface MeasurementRunEdge {
  5737. node: MeasurementRun;
  5738. cursor: String;
  5739. }
  5740. export interface MeasurementRunEdgePromise
  5741. extends Promise<MeasurementRunEdge>,
  5742. Fragmentable {
  5743. node: <T = MeasurementRunPromise>() => T;
  5744. cursor: () => Promise<String>;
  5745. }
  5746. export interface MeasurementRunEdgeSubscription
  5747. extends Promise<AsyncIterator<MeasurementRunEdge>>,
  5748. Fragmentable {
  5749. node: <T = MeasurementRunSubscription>() => T;
  5750. cursor: () => Promise<AsyncIterator<String>>;
  5751. }
  5752. export interface AggregateMeasurementRun {
  5753. count: Int;
  5754. }
  5755. export interface AggregateMeasurementRunPromise
  5756. extends Promise<AggregateMeasurementRun>,
  5757. Fragmentable {
  5758. count: () => Promise<Int>;
  5759. }
  5760. export interface AggregateMeasurementRunSubscription
  5761. extends Promise<AsyncIterator<AggregateMeasurementRun>>,
  5762. Fragmentable {
  5763. count: () => Promise<AsyncIterator<Int>>;
  5764. }
  5765. export interface ProjectConnection {
  5766. pageInfo: PageInfo;
  5767. edges: ProjectEdge[];
  5768. }
  5769. export interface ProjectConnectionPromise
  5770. extends Promise<ProjectConnection>,
  5771. Fragmentable {
  5772. pageInfo: <T = PageInfoPromise>() => T;
  5773. edges: <T = FragmentableArray<ProjectEdge>>() => T;
  5774. aggregate: <T = AggregateProjectPromise>() => T;
  5775. }
  5776. export interface ProjectConnectionSubscription
  5777. extends Promise<AsyncIterator<ProjectConnection>>,
  5778. Fragmentable {
  5779. pageInfo: <T = PageInfoSubscription>() => T;
  5780. edges: <T = Promise<AsyncIterator<ProjectEdgeSubscription>>>() => T;
  5781. aggregate: <T = AggregateProjectSubscription>() => T;
  5782. }
  5783. export interface ProjectEdge {
  5784. node: Project;
  5785. cursor: String;
  5786. }
  5787. export interface ProjectEdgePromise extends Promise<ProjectEdge>, Fragmentable {
  5788. node: <T = ProjectPromise>() => T;
  5789. cursor: () => Promise<String>;
  5790. }
  5791. export interface ProjectEdgeSubscription
  5792. extends Promise<AsyncIterator<ProjectEdge>>,
  5793. Fragmentable {
  5794. node: <T = ProjectSubscription>() => T;
  5795. cursor: () => Promise<AsyncIterator<String>>;
  5796. }
  5797. export interface AggregateProject {
  5798. count: Int;
  5799. }
  5800. export interface AggregateProjectPromise
  5801. extends Promise<AggregateProject>,
  5802. Fragmentable {
  5803. count: () => Promise<Int>;
  5804. }
  5805. export interface AggregateProjectSubscription
  5806. extends Promise<AsyncIterator<AggregateProject>>,
  5807. Fragmentable {
  5808. count: () => Promise<AsyncIterator<Int>>;
  5809. }
  5810. export interface ProjectVersionConnection {
  5811. pageInfo: PageInfo;
  5812. edges: ProjectVersionEdge[];
  5813. }
  5814. export interface ProjectVersionConnectionPromise
  5815. extends Promise<ProjectVersionConnection>,
  5816. Fragmentable {
  5817. pageInfo: <T = PageInfoPromise>() => T;
  5818. edges: <T = FragmentableArray<ProjectVersionEdge>>() => T;
  5819. aggregate: <T = AggregateProjectVersionPromise>() => T;
  5820. }
  5821. export interface ProjectVersionConnectionSubscription
  5822. extends Promise<AsyncIterator<ProjectVersionConnection>>,
  5823. Fragmentable {
  5824. pageInfo: <T = PageInfoSubscription>() => T;
  5825. edges: <T = Promise<AsyncIterator<ProjectVersionEdgeSubscription>>>() => T;
  5826. aggregate: <T = AggregateProjectVersionSubscription>() => T;
  5827. }
  5828. export interface ProjectVersionEdge {
  5829. node: ProjectVersion;
  5830. cursor: String;
  5831. }
  5832. export interface ProjectVersionEdgePromise
  5833. extends Promise<ProjectVersionEdge>,
  5834. Fragmentable {
  5835. node: <T = ProjectVersionPromise>() => T;
  5836. cursor: () => Promise<String>;
  5837. }
  5838. export interface ProjectVersionEdgeSubscription
  5839. extends Promise<AsyncIterator<ProjectVersionEdge>>,
  5840. Fragmentable {
  5841. node: <T = ProjectVersionSubscription>() => T;
  5842. cursor: () => Promise<AsyncIterator<String>>;
  5843. }
  5844. export interface AggregateProjectVersion {
  5845. count: Int;
  5846. }
  5847. export interface AggregateProjectVersionPromise
  5848. extends Promise<AggregateProjectVersion>,
  5849. Fragmentable {
  5850. count: () => Promise<Int>;
  5851. }
  5852. export interface AggregateProjectVersionSubscription
  5853. extends Promise<AsyncIterator<AggregateProjectVersion>>,
  5854. Fragmentable {
  5855. count: () => Promise<AsyncIterator<Int>>;
  5856. }
  5857. export interface SetupConnection {
  5858. pageInfo: PageInfo;
  5859. edges: SetupEdge[];
  5860. }
  5861. export interface SetupConnectionPromise
  5862. extends Promise<SetupConnection>,
  5863. Fragmentable {
  5864. pageInfo: <T = PageInfoPromise>() => T;
  5865. edges: <T = FragmentableArray<SetupEdge>>() => T;
  5866. aggregate: <T = AggregateSetupPromise>() => T;
  5867. }
  5868. export interface SetupConnectionSubscription
  5869. extends Promise<AsyncIterator<SetupConnection>>,
  5870. Fragmentable {
  5871. pageInfo: <T = PageInfoSubscription>() => T;
  5872. edges: <T = Promise<AsyncIterator<SetupEdgeSubscription>>>() => T;
  5873. aggregate: <T = AggregateSetupSubscription>() => T;
  5874. }
  5875. export interface SetupEdge {
  5876. node: Setup;
  5877. cursor: String;
  5878. }
  5879. export interface SetupEdgePromise extends Promise<SetupEdge>, Fragmentable {
  5880. node: <T = SetupPromise>() => T;
  5881. cursor: () => Promise<String>;
  5882. }
  5883. export interface SetupEdgeSubscription
  5884. extends Promise<AsyncIterator<SetupEdge>>,
  5885. Fragmentable {
  5886. node: <T = SetupSubscription>() => T;
  5887. cursor: () => Promise<AsyncIterator<String>>;
  5888. }
  5889. export interface AggregateSetup {
  5890. count: Int;
  5891. }
  5892. export interface AggregateSetupPromise
  5893. extends Promise<AggregateSetup>,
  5894. Fragmentable {
  5895. count: () => Promise<Int>;
  5896. }
  5897. export interface AggregateSetupSubscription
  5898. extends Promise<AsyncIterator<AggregateSetup>>,
  5899. Fragmentable {
  5900. count: () => Promise<AsyncIterator<Int>>;
  5901. }
  5902. export interface SetupHardwareConnection {
  5903. pageInfo: PageInfo;
  5904. edges: SetupHardwareEdge[];
  5905. }
  5906. export interface SetupHardwareConnectionPromise
  5907. extends Promise<SetupHardwareConnection>,
  5908. Fragmentable {
  5909. pageInfo: <T = PageInfoPromise>() => T;
  5910. edges: <T = FragmentableArray<SetupHardwareEdge>>() => T;
  5911. aggregate: <T = AggregateSetupHardwarePromise>() => T;
  5912. }
  5913. export interface SetupHardwareConnectionSubscription
  5914. extends Promise<AsyncIterator<SetupHardwareConnection>>,
  5915. Fragmentable {
  5916. pageInfo: <T = PageInfoSubscription>() => T;
  5917. edges: <T = Promise<AsyncIterator<SetupHardwareEdgeSubscription>>>() => T;
  5918. aggregate: <T = AggregateSetupHardwareSubscription>() => T;
  5919. }
  5920. export interface SetupHardwareEdge {
  5921. node: SetupHardware;
  5922. cursor: String;
  5923. }
  5924. export interface SetupHardwareEdgePromise
  5925. extends Promise<SetupHardwareEdge>,
  5926. Fragmentable {
  5927. node: <T = SetupHardwarePromise>() => T;
  5928. cursor: () => Promise<String>;
  5929. }
  5930. export interface SetupHardwareEdgeSubscription
  5931. extends Promise<AsyncIterator<SetupHardwareEdge>>,
  5932. Fragmentable {
  5933. node: <T = SetupHardwareSubscription>() => T;
  5934. cursor: () => Promise<AsyncIterator<String>>;
  5935. }
  5936. export interface AggregateSetupHardware {
  5937. count: Int;
  5938. }
  5939. export interface AggregateSetupHardwarePromise
  5940. extends Promise<AggregateSetupHardware>,
  5941. Fragmentable {
  5942. count: () => Promise<Int>;
  5943. }
  5944. export interface AggregateSetupHardwareSubscription
  5945. extends Promise<AsyncIterator<AggregateSetupHardware>>,
  5946. Fragmentable {
  5947. count: () => Promise<AsyncIterator<Int>>;
  5948. }
  5949. export interface SetupHardwareInstanceConnection {
  5950. pageInfo: PageInfo;
  5951. edges: SetupHardwareInstanceEdge[];
  5952. }
  5953. export interface SetupHardwareInstanceConnectionPromise
  5954. extends Promise<SetupHardwareInstanceConnection>,
  5955. Fragmentable {
  5956. pageInfo: <T = PageInfoPromise>() => T;
  5957. edges: <T = FragmentableArray<SetupHardwareInstanceEdge>>() => T;
  5958. aggregate: <T = AggregateSetupHardwareInstancePromise>() => T;
  5959. }
  5960. export interface SetupHardwareInstanceConnectionSubscription
  5961. extends Promise<AsyncIterator<SetupHardwareInstanceConnection>>,
  5962. Fragmentable {
  5963. pageInfo: <T = PageInfoSubscription>() => T;
  5964. edges: <
  5965. T = Promise<AsyncIterator<SetupHardwareInstanceEdgeSubscription>>
  5966. >() => T;
  5967. aggregate: <T = AggregateSetupHardwareInstanceSubscription>() => T;
  5968. }
  5969. export interface SetupHardwareInstanceEdge {
  5970. node: SetupHardwareInstance;
  5971. cursor: String;
  5972. }
  5973. export interface SetupHardwareInstanceEdgePromise
  5974. extends Promise<SetupHardwareInstanceEdge>,
  5975. Fragmentable {
  5976. node: <T = SetupHardwareInstancePromise>() => T;
  5977. cursor: () => Promise<String>;
  5978. }
  5979. export interface SetupHardwareInstanceEdgeSubscription
  5980. extends Promise<AsyncIterator<SetupHardwareInstanceEdge>>,
  5981. Fragmentable {
  5982. node: <T = SetupHardwareInstanceSubscription>() => T;
  5983. cursor: () => Promise<AsyncIterator<String>>;
  5984. }
  5985. export interface AggregateSetupHardwareInstance {
  5986. count: Int;
  5987. }
  5988. export interface AggregateSetupHardwareInstancePromise
  5989. extends Promise<AggregateSetupHardwareInstance>,
  5990. Fragmentable {
  5991. count: () => Promise<Int>;
  5992. }
  5993. export interface AggregateSetupHardwareInstanceSubscription
  5994. extends Promise<AsyncIterator<AggregateSetupHardwareInstance>>,
  5995. Fragmentable {
  5996. count: () => Promise<AsyncIterator<Int>>;
  5997. }
  5998. export interface UserConnection {
  5999. pageInfo: PageInfo;
  6000. edges: UserEdge[];
  6001. }
  6002. export interface UserConnectionPromise
  6003. extends Promise<UserConnection>,
  6004. Fragmentable {
  6005. pageInfo: <T = PageInfoPromise>() => T;
  6006. edges: <T = FragmentableArray<UserEdge>>() => T;
  6007. aggregate: <T = AggregateUserPromise>() => T;
  6008. }
  6009. export interface UserConnectionSubscription
  6010. extends Promise<AsyncIterator<UserConnection>>,
  6011. Fragmentable {
  6012. pageInfo: <T = PageInfoSubscription>() => T;
  6013. edges: <T = Promise<AsyncIterator<UserEdgeSubscription>>>() => T;
  6014. aggregate: <T = AggregateUserSubscription>() => T;
  6015. }
  6016. export interface UserEdge {
  6017. node: User;
  6018. cursor: String;
  6019. }
  6020. export interface UserEdgePromise extends Promise<UserEdge>, Fragmentable {
  6021. node: <T = UserPromise>() => T;
  6022. cursor: () => Promise<String>;
  6023. }
  6024. export interface UserEdgeSubscription
  6025. extends Promise<AsyncIterator<UserEdge>>,
  6026. Fragmentable {
  6027. node: <T = UserSubscription>() => T;
  6028. cursor: () => Promise<AsyncIterator<String>>;
  6029. }
  6030. export interface AggregateUser {
  6031. count: Int;
  6032. }
  6033. export interface AggregateUserPromise
  6034. extends Promise<AggregateUser>,
  6035. Fragmentable {
  6036. count: () => Promise<Int>;
  6037. }
  6038. export interface AggregateUserSubscription
  6039. extends Promise<AsyncIterator<AggregateUser>>,
  6040. Fragmentable {
  6041. count: () => Promise<AsyncIterator<Int>>;
  6042. }
  6043. export interface BatchPayload {
  6044. count: Long;
  6045. }
  6046. export interface BatchPayloadPromise
  6047. extends Promise<BatchPayload>,
  6048. Fragmentable {
  6049. count: () => Promise<Long>;
  6050. }
  6051. export interface BatchPayloadSubscription
  6052. extends Promise<AsyncIterator<BatchPayload>>,
  6053. Fragmentable {
  6054. count: () => Promise<AsyncIterator<Long>>;
  6055. }
  6056. export interface CharacterizationSubscriptionPayload {
  6057. mutation: MutationType;
  6058. node: Characterization;
  6059. updatedFields: String[];
  6060. previousValues: CharacterizationPreviousValues;
  6061. }
  6062. export interface CharacterizationSubscriptionPayloadPromise
  6063. extends Promise<CharacterizationSubscriptionPayload>,
  6064. Fragmentable {
  6065. mutation: () => Promise<MutationType>;
  6066. node: <T = CharacterizationPromise>() => T;
  6067. updatedFields: () => Promise<String[]>;
  6068. previousValues: <T = CharacterizationPreviousValuesPromise>() => T;
  6069. }
  6070. export interface CharacterizationSubscriptionPayloadSubscription
  6071. extends Promise<AsyncIterator<CharacterizationSubscriptionPayload>>,
  6072. Fragmentable {
  6073. mutation: () => Promise<AsyncIterator<MutationType>>;
  6074. node: <T = CharacterizationSubscription>() => T;
  6075. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6076. previousValues: <T = CharacterizationPreviousValuesSubscription>() => T;
  6077. }
  6078. export interface CharacterizationPreviousValues {
  6079. id: ID_Output;
  6080. }
  6081. export interface CharacterizationPreviousValuesPromise
  6082. extends Promise<CharacterizationPreviousValues>,
  6083. Fragmentable {
  6084. id: () => Promise<ID_Output>;
  6085. }
  6086. export interface CharacterizationPreviousValuesSubscription
  6087. extends Promise<AsyncIterator<CharacterizationPreviousValues>>,
  6088. Fragmentable {
  6089. id: () => Promise<AsyncIterator<ID_Output>>;
  6090. }
  6091. export interface CommentSubscriptionPayload {
  6092. mutation: MutationType;
  6093. node: Comment;
  6094. updatedFields: String[];
  6095. previousValues: CommentPreviousValues;
  6096. }
  6097. export interface CommentSubscriptionPayloadPromise
  6098. extends Promise<CommentSubscriptionPayload>,
  6099. Fragmentable {
  6100. mutation: () => Promise<MutationType>;
  6101. node: <T = CommentPromise>() => T;
  6102. updatedFields: () => Promise<String[]>;
  6103. previousValues: <T = CommentPreviousValuesPromise>() => T;
  6104. }
  6105. export interface CommentSubscriptionPayloadSubscription
  6106. extends Promise<AsyncIterator<CommentSubscriptionPayload>>,
  6107. Fragmentable {
  6108. mutation: () => Promise<AsyncIterator<MutationType>>;
  6109. node: <T = CommentSubscription>() => T;
  6110. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6111. previousValues: <T = CommentPreviousValuesSubscription>() => T;
  6112. }
  6113. export interface CommentPreviousValues {
  6114. id: ID_Output;
  6115. text?: String;
  6116. createdAt: DateTimeOutput;
  6117. }
  6118. export interface CommentPreviousValuesPromise
  6119. extends Promise<CommentPreviousValues>,
  6120. Fragmentable {
  6121. id: () => Promise<ID_Output>;
  6122. text: () => Promise<String>;
  6123. createdAt: () => Promise<DateTimeOutput>;
  6124. }
  6125. export interface CommentPreviousValuesSubscription
  6126. extends Promise<AsyncIterator<CommentPreviousValues>>,
  6127. Fragmentable {
  6128. id: () => Promise<AsyncIterator<ID_Output>>;
  6129. text: () => Promise<AsyncIterator<String>>;
  6130. createdAt: () => Promise<AsyncIterator<DateTimeOutput>>;
  6131. }
  6132. export interface DUTSubscriptionPayload {
  6133. mutation: MutationType;
  6134. node: DUT;
  6135. updatedFields: String[];
  6136. previousValues: DUTPreviousValues;
  6137. }
  6138. export interface DUTSubscriptionPayloadPromise
  6139. extends Promise<DUTSubscriptionPayload>,
  6140. Fragmentable {
  6141. mutation: () => Promise<MutationType>;
  6142. node: <T = DUTPromise>() => T;
  6143. updatedFields: () => Promise<String[]>;
  6144. previousValues: <T = DUTPreviousValuesPromise>() => T;
  6145. }
  6146. export interface DUTSubscriptionPayloadSubscription
  6147. extends Promise<AsyncIterator<DUTSubscriptionPayload>>,
  6148. Fragmentable {
  6149. mutation: () => Promise<AsyncIterator<MutationType>>;
  6150. node: <T = DUTSubscription>() => T;
  6151. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6152. previousValues: <T = DUTPreviousValuesSubscription>() => T;
  6153. }
  6154. export interface DUTPreviousValues {
  6155. id: ID_Output;
  6156. name: String;
  6157. description?: String;
  6158. modifications: String[];
  6159. }
  6160. export interface DUTPreviousValuesPromise
  6161. extends Promise<DUTPreviousValues>,
  6162. Fragmentable {
  6163. id: () => Promise<ID_Output>;
  6164. name: () => Promise<String>;
  6165. description: () => Promise<String>;
  6166. modifications: () => Promise<String[]>;
  6167. }
  6168. export interface DUTPreviousValuesSubscription
  6169. extends Promise<AsyncIterator<DUTPreviousValues>>,
  6170. Fragmentable {
  6171. id: () => Promise<AsyncIterator<ID_Output>>;
  6172. name: () => Promise<AsyncIterator<String>>;
  6173. description: () => Promise<AsyncIterator<String>>;
  6174. modifications: () => Promise<AsyncIterator<String[]>>;
  6175. }
  6176. export interface EventSubscriptionPayload {
  6177. mutation: MutationType;
  6178. node: Event;
  6179. updatedFields: String[];
  6180. previousValues: EventPreviousValues;
  6181. }
  6182. export interface EventSubscriptionPayloadPromise
  6183. extends Promise<EventSubscriptionPayload>,
  6184. Fragmentable {
  6185. mutation: () => Promise<MutationType>;
  6186. node: <T = EventPromise>() => T;
  6187. updatedFields: () => Promise<String[]>;
  6188. previousValues: <T = EventPreviousValuesPromise>() => T;
  6189. }
  6190. export interface EventSubscriptionPayloadSubscription
  6191. extends Promise<AsyncIterator<EventSubscriptionPayload>>,
  6192. Fragmentable {
  6193. mutation: () => Promise<AsyncIterator<MutationType>>;
  6194. node: <T = EventSubscription>() => T;
  6195. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6196. previousValues: <T = EventPreviousValuesSubscription>() => T;
  6197. }
  6198. export interface EventPreviousValues {
  6199. id: ID_Output;
  6200. type: String;
  6201. when: DateTimeOutput;
  6202. }
  6203. export interface EventPreviousValuesPromise
  6204. extends Promise<EventPreviousValues>,
  6205. Fragmentable {
  6206. id: () => Promise<ID_Output>;
  6207. type: () => Promise<String>;
  6208. when: () => Promise<DateTimeOutput>;
  6209. }
  6210. export interface EventPreviousValuesSubscription
  6211. extends Promise<AsyncIterator<EventPreviousValues>>,
  6212. Fragmentable {
  6213. id: () => Promise<AsyncIterator<ID_Output>>;
  6214. type: () => Promise<AsyncIterator<String>>;
  6215. when: () => Promise<AsyncIterator<DateTimeOutput>>;
  6216. }
  6217. export interface FileSubscriptionPayload {
  6218. mutation: MutationType;
  6219. node: File;
  6220. updatedFields: String[];
  6221. previousValues: FilePreviousValues;
  6222. }
  6223. export interface FileSubscriptionPayloadPromise
  6224. extends Promise<FileSubscriptionPayload>,
  6225. Fragmentable {
  6226. mutation: () => Promise<MutationType>;
  6227. node: <T = FilePromise>() => T;
  6228. updatedFields: () => Promise<String[]>;
  6229. previousValues: <T = FilePreviousValuesPromise>() => T;
  6230. }
  6231. export interface FileSubscriptionPayloadSubscription
  6232. extends Promise<AsyncIterator<FileSubscriptionPayload>>,
  6233. Fragmentable {
  6234. mutation: () => Promise<AsyncIterator<MutationType>>;
  6235. node: <T = FileSubscription>() => T;
  6236. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6237. previousValues: <T = FilePreviousValuesSubscription>() => T;
  6238. }
  6239. export interface FilePreviousValues {
  6240. id: ID_Output;
  6241. filename: String;
  6242. mimetype: String;
  6243. truncated: Boolean;
  6244. size: Int;
  6245. md5: String;
  6246. }
  6247. export interface FilePreviousValuesPromise
  6248. extends Promise<FilePreviousValues>,
  6249. Fragmentable {
  6250. id: () => Promise<ID_Output>;
  6251. filename: () => Promise<String>;
  6252. mimetype: () => Promise<String>;
  6253. truncated: () => Promise<Boolean>;
  6254. size: () => Promise<Int>;
  6255. md5: () => Promise<String>;
  6256. }
  6257. export interface FilePreviousValuesSubscription
  6258. extends Promise<AsyncIterator<FilePreviousValues>>,
  6259. Fragmentable {
  6260. id: () => Promise<AsyncIterator<ID_Output>>;
  6261. filename: () => Promise<AsyncIterator<String>>;
  6262. mimetype: () => Promise<AsyncIterator<String>>;
  6263. truncated: () => Promise<AsyncIterator<Boolean>>;
  6264. size: () => Promise<AsyncIterator<Int>>;
  6265. md5: () => Promise<AsyncIterator<String>>;
  6266. }
  6267. export interface InstrumentSubscriptionPayload {
  6268. mutation: MutationType;
  6269. node: Instrument;
  6270. updatedFields: String[];
  6271. previousValues: InstrumentPreviousValues;
  6272. }
  6273. export interface InstrumentSubscriptionPayloadPromise
  6274. extends Promise<InstrumentSubscriptionPayload>,
  6275. Fragmentable {
  6276. mutation: () => Promise<MutationType>;
  6277. node: <T = InstrumentPromise>() => T;
  6278. updatedFields: () => Promise<String[]>;
  6279. previousValues: <T = InstrumentPreviousValuesPromise>() => T;
  6280. }
  6281. export interface InstrumentSubscriptionPayloadSubscription
  6282. extends Promise<AsyncIterator<InstrumentSubscriptionPayload>>,
  6283. Fragmentable {
  6284. mutation: () => Promise<AsyncIterator<MutationType>>;
  6285. node: <T = InstrumentSubscription>() => T;
  6286. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6287. previousValues: <T = InstrumentPreviousValuesSubscription>() => T;
  6288. }
  6289. export interface InstrumentPreviousValues {
  6290. id: ID_Output;
  6291. name: String;
  6292. description?: String;
  6293. interfaces: String[];
  6294. }
  6295. export interface InstrumentPreviousValuesPromise
  6296. extends Promise<InstrumentPreviousValues>,
  6297. Fragmentable {
  6298. id: () => Promise<ID_Output>;
  6299. name: () => Promise<String>;
  6300. description: () => Promise<String>;
  6301. interfaces: () => Promise<String[]>;
  6302. }
  6303. export interface InstrumentPreviousValuesSubscription
  6304. extends Promise<AsyncIterator<InstrumentPreviousValues>>,
  6305. Fragmentable {
  6306. id: () => Promise<AsyncIterator<ID_Output>>;
  6307. name: () => Promise<AsyncIterator<String>>;
  6308. description: () => Promise<AsyncIterator<String>>;
  6309. interfaces: () => Promise<AsyncIterator<String[]>>;
  6310. }
  6311. export interface InstrumentCommandSubscriptionPayload {
  6312. mutation: MutationType;
  6313. node: InstrumentCommand;
  6314. updatedFields: String[];
  6315. previousValues: InstrumentCommandPreviousValues;
  6316. }
  6317. export interface InstrumentCommandSubscriptionPayloadPromise
  6318. extends Promise<InstrumentCommandSubscriptionPayload>,
  6319. Fragmentable {
  6320. mutation: () => Promise<MutationType>;
  6321. node: <T = InstrumentCommandPromise>() => T;
  6322. updatedFields: () => Promise<String[]>;
  6323. previousValues: <T = InstrumentCommandPreviousValuesPromise>() => T;
  6324. }
  6325. export interface InstrumentCommandSubscriptionPayloadSubscription
  6326. extends Promise<AsyncIterator<InstrumentCommandSubscriptionPayload>>,
  6327. Fragmentable {
  6328. mutation: () => Promise<AsyncIterator<MutationType>>;
  6329. node: <T = InstrumentCommandSubscription>() => T;
  6330. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6331. previousValues: <T = InstrumentCommandPreviousValuesSubscription>() => T;
  6332. }
  6333. export interface InstrumentCommandPreviousValues {
  6334. id: ID_Output;
  6335. tag: String;
  6336. name?: String;
  6337. description: String;
  6338. readString?: String;
  6339. writeString?: String;
  6340. }
  6341. export interface InstrumentCommandPreviousValuesPromise
  6342. extends Promise<InstrumentCommandPreviousValues>,
  6343. Fragmentable {
  6344. id: () => Promise<ID_Output>;
  6345. tag: () => Promise<String>;
  6346. name: () => Promise<String>;
  6347. description: () => Promise<String>;
  6348. readString: () => Promise<String>;
  6349. writeString: () => Promise<String>;
  6350. }
  6351. export interface InstrumentCommandPreviousValuesSubscription
  6352. extends Promise<AsyncIterator<InstrumentCommandPreviousValues>>,
  6353. Fragmentable {
  6354. id: () => Promise<AsyncIterator<ID_Output>>;
  6355. tag: () => Promise<AsyncIterator<String>>;
  6356. name: () => Promise<AsyncIterator<String>>;
  6357. description: () => Promise<AsyncIterator<String>>;
  6358. readString: () => Promise<AsyncIterator<String>>;
  6359. writeString: () => Promise<AsyncIterator<String>>;
  6360. }
  6361. export interface InstrumentInstanceSubscriptionPayload {
  6362. mutation: MutationType;
  6363. node: InstrumentInstance;
  6364. updatedFields: String[];
  6365. previousValues: InstrumentInstancePreviousValues;
  6366. }
  6367. export interface InstrumentInstanceSubscriptionPayloadPromise
  6368. extends Promise<InstrumentInstanceSubscriptionPayload>,
  6369. Fragmentable {
  6370. mutation: () => Promise<MutationType>;
  6371. node: <T = InstrumentInstancePromise>() => T;
  6372. updatedFields: () => Promise<String[]>;
  6373. previousValues: <T = InstrumentInstancePreviousValuesPromise>() => T;
  6374. }
  6375. export interface InstrumentInstanceSubscriptionPayloadSubscription
  6376. extends Promise<AsyncIterator<InstrumentInstanceSubscriptionPayload>>,
  6377. Fragmentable {
  6378. mutation: () => Promise<AsyncIterator<MutationType>>;
  6379. node: <T = InstrumentInstanceSubscription>() => T;
  6380. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6381. previousValues: <T = InstrumentInstancePreviousValuesSubscription>() => T;
  6382. }
  6383. export interface InstrumentInstancePreviousValues {
  6384. id: ID_Output;
  6385. identifier: String;
  6386. interface: String[];
  6387. label?: String;
  6388. location?: String;
  6389. }
  6390. export interface InstrumentInstancePreviousValuesPromise
  6391. extends Promise<InstrumentInstancePreviousValues>,
  6392. Fragmentable {
  6393. id: () => Promise<ID_Output>;
  6394. identifier: () => Promise<String>;
  6395. interface: () => Promise<String[]>;
  6396. label: () => Promise<String>;
  6397. location: () => Promise<String>;
  6398. }
  6399. export interface InstrumentInstancePreviousValuesSubscription
  6400. extends Promise<AsyncIterator<InstrumentInstancePreviousValues>>,
  6401. Fragmentable {
  6402. id: () => Promise<AsyncIterator<ID_Output>>;
  6403. identifier: () => Promise<AsyncIterator<String>>;
  6404. interface: () => Promise<AsyncIterator<String[]>>;
  6405. label: () => Promise<AsyncIterator<String>>;
  6406. location: () => Promise<AsyncIterator<String>>;
  6407. }
  6408. export interface InstrumentParameterSubscriptionPayload {
  6409. mutation: MutationType;
  6410. node: InstrumentParameter;
  6411. updatedFields: String[];
  6412. previousValues: InstrumentParameterPreviousValues;
  6413. }
  6414. export interface InstrumentParameterSubscriptionPayloadPromise
  6415. extends Promise<InstrumentParameterSubscriptionPayload>,
  6416. Fragmentable {
  6417. mutation: () => Promise<MutationType>;
  6418. node: <T = InstrumentParameterPromise>() => T;
  6419. updatedFields: () => Promise<String[]>;
  6420. previousValues: <T = InstrumentParameterPreviousValuesPromise>() => T;
  6421. }
  6422. export interface InstrumentParameterSubscriptionPayloadSubscription
  6423. extends Promise<AsyncIterator<InstrumentParameterSubscriptionPayload>>,
  6424. Fragmentable {
  6425. mutation: () => Promise<AsyncIterator<MutationType>>;
  6426. node: <T = InstrumentParameterSubscription>() => T;
  6427. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6428. previousValues: <T = InstrumentParameterPreviousValuesSubscription>() => T;
  6429. }
  6430. export interface InstrumentParameterPreviousValues {
  6431. id: ID_Output;
  6432. tag: String;
  6433. name?: String;
  6434. description?: String;
  6435. type: String;
  6436. values?: String;
  6437. }
  6438. export interface InstrumentParameterPreviousValuesPromise
  6439. extends Promise<InstrumentParameterPreviousValues>,
  6440. Fragmentable {
  6441. id: () => Promise<ID_Output>;
  6442. tag: () => Promise<String>;
  6443. name: () => Promise<String>;
  6444. description: () => Promise<String>;
  6445. type: () => Promise<String>;
  6446. values: () => Promise<String>;
  6447. }
  6448. export interface InstrumentParameterPreviousValuesSubscription
  6449. extends Promise<AsyncIterator<InstrumentParameterPreviousValues>>,
  6450. Fragmentable {
  6451. id: () => Promise<AsyncIterator<ID_Output>>;
  6452. tag: () => Promise<AsyncIterator<String>>;
  6453. name: () => Promise<AsyncIterator<String>>;
  6454. description: () => Promise<AsyncIterator<String>>;
  6455. type: () => Promise<AsyncIterator<String>>;
  6456. values: () => Promise<AsyncIterator<String>>;
  6457. }
  6458. export interface InstrumentSubsystemSubscriptionPayload {
  6459. mutation: MutationType;
  6460. node: InstrumentSubsystem;
  6461. updatedFields: String[];
  6462. previousValues: InstrumentSubsystemPreviousValues;
  6463. }
  6464. export interface InstrumentSubsystemSubscriptionPayloadPromise
  6465. extends Promise<InstrumentSubsystemSubscriptionPayload>,
  6466. Fragmentable {
  6467. mutation: () => Promise<MutationType>;
  6468. node: <T = InstrumentSubsystemPromise>() => T;
  6469. updatedFields: () => Promise<String[]>;
  6470. previousValues: <T = InstrumentSubsystemPreviousValuesPromise>() => T;
  6471. }
  6472. export interface InstrumentSubsystemSubscriptionPayloadSubscription
  6473. extends Promise<AsyncIterator<InstrumentSubsystemSubscriptionPayload>>,
  6474. Fragmentable {
  6475. mutation: () => Promise<AsyncIterator<MutationType>>;
  6476. node: <T = InstrumentSubsystemSubscription>() => T;
  6477. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6478. previousValues: <T = InstrumentSubsystemPreviousValuesSubscription>() => T;
  6479. }
  6480. export interface InstrumentSubsystemPreviousValues {
  6481. id: ID_Output;
  6482. name?: String;
  6483. description: String;
  6484. }
  6485. export interface InstrumentSubsystemPreviousValuesPromise
  6486. extends Promise<InstrumentSubsystemPreviousValues>,
  6487. Fragmentable {
  6488. id: () => Promise<ID_Output>;
  6489. name: () => Promise<String>;
  6490. description: () => Promise<String>;
  6491. }
  6492. export interface InstrumentSubsystemPreviousValuesSubscription
  6493. extends Promise<AsyncIterator<InstrumentSubsystemPreviousValues>>,
  6494. Fragmentable {
  6495. id: () => Promise<AsyncIterator<ID_Output>>;
  6496. name: () => Promise<AsyncIterator<String>>;
  6497. description: () => Promise<AsyncIterator<String>>;
  6498. }
  6499. export interface MeasurementSubscriptionPayload {
  6500. mutation: MutationType;
  6501. node: Measurement;
  6502. updatedFields: String[];
  6503. previousValues: MeasurementPreviousValues;
  6504. }
  6505. export interface MeasurementSubscriptionPayloadPromise
  6506. extends Promise<MeasurementSubscriptionPayload>,
  6507. Fragmentable {
  6508. mutation: () => Promise<MutationType>;
  6509. node: <T = MeasurementPromise>() => T;
  6510. updatedFields: () => Promise<String[]>;
  6511. previousValues: <T = MeasurementPreviousValuesPromise>() => T;
  6512. }
  6513. export interface MeasurementSubscriptionPayloadSubscription
  6514. extends Promise<AsyncIterator<MeasurementSubscriptionPayload>>,
  6515. Fragmentable {
  6516. mutation: () => Promise<AsyncIterator<MutationType>>;
  6517. node: <T = MeasurementSubscription>() => T;
  6518. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6519. previousValues: <T = MeasurementPreviousValuesSubscription>() => T;
  6520. }
  6521. export interface MeasurementPreviousValues {
  6522. id: ID_Output;
  6523. createdAt: DateTimeOutput;
  6524. intValue?: Int;
  6525. floatValue?: Float;
  6526. stringValue?: String;
  6527. }
  6528. export interface MeasurementPreviousValuesPromise
  6529. extends Promise<MeasurementPreviousValues>,
  6530. Fragmentable {
  6531. id: () => Promise<ID_Output>;
  6532. createdAt: () => Promise<DateTimeOutput>;
  6533. intValue: () => Promise<Int>;
  6534. floatValue: () => Promise<Float>;
  6535. stringValue: () => Promise<String>;
  6536. }
  6537. export interface MeasurementPreviousValuesSubscription
  6538. extends Promise<AsyncIterator<MeasurementPreviousValues>>,
  6539. Fragmentable {
  6540. id: () => Promise<AsyncIterator<ID_Output>>;
  6541. createdAt: () => Promise<AsyncIterator<DateTimeOutput>>;
  6542. intValue: () => Promise<AsyncIterator<Int>>;
  6543. floatValue: () => Promise<AsyncIterator<Float>>;
  6544. stringValue: () => Promise<AsyncIterator<String>>;
  6545. }
  6546. export interface MeasurementRunSubscriptionPayload {
  6547. mutation: MutationType;
  6548. node: MeasurementRun;
  6549. updatedFields: String[];
  6550. previousValues: MeasurementRunPreviousValues;
  6551. }
  6552. export interface MeasurementRunSubscriptionPayloadPromise
  6553. extends Promise<MeasurementRunSubscriptionPayload>,
  6554. Fragmentable {
  6555. mutation: () => Promise<MutationType>;
  6556. node: <T = MeasurementRunPromise>() => T;
  6557. updatedFields: () => Promise<String[]>;
  6558. previousValues: <T = MeasurementRunPreviousValuesPromise>() => T;
  6559. }
  6560. export interface MeasurementRunSubscriptionPayloadSubscription
  6561. extends Promise<AsyncIterator<MeasurementRunSubscriptionPayload>>,
  6562. Fragmentable {
  6563. mutation: () => Promise<AsyncIterator<MutationType>>;
  6564. node: <T = MeasurementRunSubscription>() => T;
  6565. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6566. previousValues: <T = MeasurementRunPreviousValuesSubscription>() => T;
  6567. }
  6568. export interface MeasurementRunPreviousValues {
  6569. id: ID_Output;
  6570. location: String;
  6571. temperature?: Float;
  6572. startTime: DateTimeOutput;
  6573. endTime: DateTimeOutput;
  6574. }
  6575. export interface MeasurementRunPreviousValuesPromise
  6576. extends Promise<MeasurementRunPreviousValues>,
  6577. Fragmentable {
  6578. id: () => Promise<ID_Output>;
  6579. location: () => Promise<String>;
  6580. temperature: () => Promise<Float>;
  6581. startTime: () => Promise<DateTimeOutput>;
  6582. endTime: () => Promise<DateTimeOutput>;
  6583. }
  6584. export interface MeasurementRunPreviousValuesSubscription
  6585. extends Promise<AsyncIterator<MeasurementRunPreviousValues>>,
  6586. Fragmentable {
  6587. id: () => Promise<AsyncIterator<ID_Output>>;
  6588. location: () => Promise<AsyncIterator<String>>;
  6589. temperature: () => Promise<AsyncIterator<Float>>;
  6590. startTime: () => Promise<AsyncIterator<DateTimeOutput>>;
  6591. endTime: () => Promise<AsyncIterator<DateTimeOutput>>;
  6592. }
  6593. export interface ProjectSubscriptionPayload {
  6594. mutation: MutationType;
  6595. node: Project;
  6596. updatedFields: String[];
  6597. previousValues: ProjectPreviousValues;
  6598. }
  6599. export interface ProjectSubscriptionPayloadPromise
  6600. extends Promise<ProjectSubscriptionPayload>,
  6601. Fragmentable {
  6602. mutation: () => Promise<MutationType>;
  6603. node: <T = ProjectPromise>() => T;
  6604. updatedFields: () => Promise<String[]>;
  6605. previousValues: <T = ProjectPreviousValuesPromise>() => T;
  6606. }
  6607. export interface ProjectSubscriptionPayloadSubscription
  6608. extends Promise<AsyncIterator<ProjectSubscriptionPayload>>,
  6609. Fragmentable {
  6610. mutation: () => Promise<AsyncIterator<MutationType>>;
  6611. node: <T = ProjectSubscription>() => T;
  6612. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6613. previousValues: <T = ProjectPreviousValuesSubscription>() => T;
  6614. }
  6615. export interface ProjectPreviousValues {
  6616. id: ID_Output;
  6617. name: String;
  6618. abbreviation: String;
  6619. description?: String;
  6620. }
  6621. export interface ProjectPreviousValuesPromise
  6622. extends Promise<ProjectPreviousValues>,
  6623. Fragmentable {
  6624. id: () => Promise<ID_Output>;
  6625. name: () => Promise<String>;
  6626. abbreviation: () => Promise<String>;
  6627. description: () => Promise<String>;
  6628. }
  6629. export interface ProjectPreviousValuesSubscription
  6630. extends Promise<AsyncIterator<ProjectPreviousValues>>,
  6631. Fragmentable {
  6632. id: () => Promise<AsyncIterator<ID_Output>>;
  6633. name: () => Promise<AsyncIterator<String>>;
  6634. abbreviation: () => Promise<AsyncIterator<String>>;
  6635. description: () => Promise<AsyncIterator<String>>;
  6636. }
  6637. export interface ProjectVersionSubscriptionPayload {
  6638. mutation: MutationType;
  6639. node: ProjectVersion;
  6640. updatedFields: String[];
  6641. previousValues: ProjectVersionPreviousValues;
  6642. }
  6643. export interface ProjectVersionSubscriptionPayloadPromise
  6644. extends Promise<ProjectVersionSubscriptionPayload>,
  6645. Fragmentable {
  6646. mutation: () => Promise<MutationType>;
  6647. node: <T = ProjectVersionPromise>() => T;
  6648. updatedFields: () => Promise<String[]>;
  6649. previousValues: <T = ProjectVersionPreviousValuesPromise>() => T;
  6650. }
  6651. export interface ProjectVersionSubscriptionPayloadSubscription
  6652. extends Promise<AsyncIterator<ProjectVersionSubscriptionPayload>>,
  6653. Fragmentable {
  6654. mutation: () => Promise<AsyncIterator<MutationType>>;
  6655. node: <T = ProjectVersionSubscription>() => T;
  6656. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6657. previousValues: <T = ProjectVersionPreviousValuesSubscription>() => T;
  6658. }
  6659. export interface ProjectVersionPreviousValues {
  6660. id: ID_Output;
  6661. name: String;
  6662. changes: String;
  6663. date: DateTimeOutput;
  6664. }
  6665. export interface ProjectVersionPreviousValuesPromise
  6666. extends Promise<ProjectVersionPreviousValues>,
  6667. Fragmentable {
  6668. id: () => Promise<ID_Output>;
  6669. name: () => Promise<String>;
  6670. changes: () => Promise<String>;
  6671. date: () => Promise<DateTimeOutput>;
  6672. }
  6673. export interface ProjectVersionPreviousValuesSubscription
  6674. extends Promise<AsyncIterator<ProjectVersionPreviousValues>>,
  6675. Fragmentable {
  6676. id: () => Promise<AsyncIterator<ID_Output>>;
  6677. name: () => Promise<AsyncIterator<String>>;
  6678. changes: () => Promise<AsyncIterator<String>>;
  6679. date: () => Promise<AsyncIterator<DateTimeOutput>>;
  6680. }
  6681. export interface SetupSubscriptionPayload {
  6682. mutation: MutationType;
  6683. node: Setup;
  6684. updatedFields: String[];
  6685. previousValues: SetupPreviousValues;
  6686. }
  6687. export interface SetupSubscriptionPayloadPromise
  6688. extends Promise<SetupSubscriptionPayload>,
  6689. Fragmentable {
  6690. mutation: () => Promise<MutationType>;
  6691. node: <T = SetupPromise>() => T;
  6692. updatedFields: () => Promise<String[]>;
  6693. previousValues: <T = SetupPreviousValuesPromise>() => T;
  6694. }
  6695. export interface SetupSubscriptionPayloadSubscription
  6696. extends Promise<AsyncIterator<SetupSubscriptionPayload>>,
  6697. Fragmentable {
  6698. mutation: () => Promise<AsyncIterator<MutationType>>;
  6699. node: <T = SetupSubscription>() => T;
  6700. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6701. previousValues: <T = SetupPreviousValuesSubscription>() => T;
  6702. }
  6703. export interface SetupPreviousValues {
  6704. id: ID_Output;
  6705. name: String;
  6706. description: String;
  6707. }
  6708. export interface SetupPreviousValuesPromise
  6709. extends Promise<SetupPreviousValues>,
  6710. Fragmentable {
  6711. id: () => Promise<ID_Output>;
  6712. name: () => Promise<String>;
  6713. description: () => Promise<String>;
  6714. }
  6715. export interface SetupPreviousValuesSubscription
  6716. extends Promise<AsyncIterator<SetupPreviousValues>>,
  6717. Fragmentable {
  6718. id: () => Promise<AsyncIterator<ID_Output>>;
  6719. name: () => Promise<AsyncIterator<String>>;
  6720. description: () => Promise<AsyncIterator<String>>;
  6721. }
  6722. export interface SetupHardwareSubscriptionPayload {
  6723. mutation: MutationType;
  6724. node: SetupHardware;
  6725. updatedFields: String[];
  6726. previousValues: SetupHardwarePreviousValues;
  6727. }
  6728. export interface SetupHardwareSubscriptionPayloadPromise
  6729. extends Promise<SetupHardwareSubscriptionPayload>,
  6730. Fragmentable {
  6731. mutation: () => Promise<MutationType>;
  6732. node: <T = SetupHardwarePromise>() => T;
  6733. updatedFields: () => Promise<String[]>;
  6734. previousValues: <T = SetupHardwarePreviousValuesPromise>() => T;
  6735. }
  6736. export interface SetupHardwareSubscriptionPayloadSubscription
  6737. extends Promise<AsyncIterator<SetupHardwareSubscriptionPayload>>,
  6738. Fragmentable {
  6739. mutation: () => Promise<AsyncIterator<MutationType>>;
  6740. node: <T = SetupHardwareSubscription>() => T;
  6741. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6742. previousValues: <T = SetupHardwarePreviousValuesSubscription>() => T;
  6743. }
  6744. export interface SetupHardwarePreviousValues {
  6745. id: ID_Output;
  6746. name: String;
  6747. description?: String;
  6748. }
  6749. export interface SetupHardwarePreviousValuesPromise
  6750. extends Promise<SetupHardwarePreviousValues>,
  6751. Fragmentable {
  6752. id: () => Promise<ID_Output>;
  6753. name: () => Promise<String>;
  6754. description: () => Promise<String>;
  6755. }
  6756. export interface SetupHardwarePreviousValuesSubscription
  6757. extends Promise<AsyncIterator<SetupHardwarePreviousValues>>,
  6758. Fragmentable {
  6759. id: () => Promise<AsyncIterator<ID_Output>>;
  6760. name: () => Promise<AsyncIterator<String>>;
  6761. description: () => Promise<AsyncIterator<String>>;
  6762. }
  6763. export interface SetupHardwareInstanceSubscriptionPayload {
  6764. mutation: MutationType;
  6765. node: SetupHardwareInstance;
  6766. updatedFields: String[];
  6767. previousValues: SetupHardwareInstancePreviousValues;
  6768. }
  6769. export interface SetupHardwareInstanceSubscriptionPayloadPromise
  6770. extends Promise<SetupHardwareInstanceSubscriptionPayload>,
  6771. Fragmentable {
  6772. mutation: () => Promise<MutationType>;
  6773. node: <T = SetupHardwareInstancePromise>() => T;
  6774. updatedFields: () => Promise<String[]>;
  6775. previousValues: <T = SetupHardwareInstancePreviousValuesPromise>() => T;
  6776. }
  6777. export interface SetupHardwareInstanceSubscriptionPayloadSubscription
  6778. extends Promise<AsyncIterator<SetupHardwareInstanceSubscriptionPayload>>,
  6779. Fragmentable {
  6780. mutation: () => Promise<AsyncIterator<MutationType>>;
  6781. node: <T = SetupHardwareInstanceSubscription>() => T;
  6782. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6783. previousValues: <T = SetupHardwareInstancePreviousValuesSubscription>() => T;
  6784. }
  6785. export interface SetupHardwareInstancePreviousValues {
  6786. id: ID_Output;
  6787. identifier: String;
  6788. }
  6789. export interface SetupHardwareInstancePreviousValuesPromise
  6790. extends Promise<SetupHardwareInstancePreviousValues>,
  6791. Fragmentable {
  6792. id: () => Promise<ID_Output>;
  6793. identifier: () => Promise<String>;
  6794. }
  6795. export interface SetupHardwareInstancePreviousValuesSubscription
  6796. extends Promise<AsyncIterator<SetupHardwareInstancePreviousValues>>,
  6797. Fragmentable {
  6798. id: () => Promise<AsyncIterator<ID_Output>>;
  6799. identifier: () => Promise<AsyncIterator<String>>;
  6800. }
  6801. export interface UserSubscriptionPayload {
  6802. mutation: MutationType;
  6803. node: User;
  6804. updatedFields: String[];
  6805. previousValues: UserPreviousValues;
  6806. }
  6807. export interface UserSubscriptionPayloadPromise
  6808. extends Promise<UserSubscriptionPayload>,
  6809. Fragmentable {
  6810. mutation: () => Promise<MutationType>;
  6811. node: <T = UserPromise>() => T;
  6812. updatedFields: () => Promise<String[]>;
  6813. previousValues: <T = UserPreviousValuesPromise>() => T;
  6814. }
  6815. export interface UserSubscriptionPayloadSubscription
  6816. extends Promise<AsyncIterator<UserSubscriptionPayload>>,
  6817. Fragmentable {
  6818. mutation: () => Promise<AsyncIterator<MutationType>>;
  6819. node: <T = UserSubscription>() => T;
  6820. updatedFields: () => Promise<AsyncIterator<String[]>>;
  6821. previousValues: <T = UserPreviousValuesSubscription>() => T;
  6822. }
  6823. export interface UserPreviousValues {
  6824. id: ID_Output;
  6825. email: String;
  6826. name: String;
  6827. abbreviation: String;
  6828. password: String;
  6829. }
  6830. export interface UserPreviousValuesPromise
  6831. extends Promise<UserPreviousValues>,
  6832. Fragmentable {
  6833. id: () => Promise<ID_Output>;
  6834. email: () => Promise<String>;
  6835. name: () => Promise<String>;
  6836. abbreviation: () => Promise<String>;
  6837. password: () => Promise<String>;
  6838. }
  6839. export interface UserPreviousValuesSubscription
  6840. extends Promise<AsyncIterator<UserPreviousValues>>,
  6841. Fragmentable {
  6842. id: () => Promise<AsyncIterator<ID_Output>>;
  6843. email: () => Promise<AsyncIterator<String>>;
  6844. name: () => Promise<AsyncIterator<String>>;
  6845. abbreviation: () => Promise<AsyncIterator<String>>;
  6846. password: () => Promise<AsyncIterator<String>>;
  6847. }
  6848. /*
  6849. The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.
  6850. */
  6851. export type ID_Input = string | number;
  6852. export type ID_Output = string;
  6853. /*
  6854. The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
  6855. */
  6856. export type String = string;
  6857. /*
  6858. The `Boolean` scalar type represents `true` or `false`.
  6859. */
  6860. export type Boolean = boolean;
  6861. /*
  6862. The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
  6863. */
  6864. export type Int = number;
  6865. /*
  6866. The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).
  6867. */
  6868. export type Float = number;
  6869. /*
  6870. DateTime scalar input type, allowing Date
  6871. */
  6872. export type DateTimeInput = Date | string;
  6873. /*
  6874. DateTime scalar output type, which is always a string
  6875. */
  6876. export type DateTimeOutput = string;
  6877. export type Long = string;
  6878. /**
  6879. * Model Metadata
  6880. */
  6881. export const models: Model[] = [
  6882. {
  6883. name: "User",
  6884. embedded: false
  6885. },
  6886. {
  6887. name: "File",
  6888. embedded: false
  6889. },
  6890. {
  6891. name: "Comment",
  6892. embedded: false
  6893. },
  6894. {
  6895. name: "Event",
  6896. embedded: false
  6897. },
  6898. {
  6899. name: "Project",
  6900. embedded: false
  6901. },
  6902. {
  6903. name: "ProjectVersion",
  6904. embedded: false
  6905. },
  6906. {
  6907. name: "InstrumentParameter",
  6908. embedded: false
  6909. },
  6910. {
  6911. name: "InstrumentCommand",
  6912. embedded: false
  6913. },
  6914. {
  6915. name: "InstrumentSubsystem",
  6916. embedded: false
  6917. },
  6918. {
  6919. name: "Instrument",
  6920. embedded: false
  6921. },
  6922. {
  6923. name: "InstrumentInstance",
  6924. embedded: false
  6925. },
  6926. {
  6927. name: "DUT",
  6928. embedded: false
  6929. },
  6930. {
  6931. name: "SetupHardware",
  6932. embedded: false
  6933. },
  6934. {
  6935. name: "SetupHardwareInstance",
  6936. embedded: false
  6937. },
  6938. {
  6939. name: "Setup",
  6940. embedded: false
  6941. },
  6942. {
  6943. name: "Measurement",
  6944. embedded: false
  6945. },
  6946. {
  6947. name: "MeasurementRun",
  6948. embedded: false
  6949. },
  6950. {
  6951. name: "Characterization",
  6952. embedded: false
  6953. }
  6954. ];
  6955. /**
  6956. * Type Defs
  6957. */
  6958. export const prisma: Prisma;