data-of-loathing 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/schema.d.ts CHANGED
@@ -4,8 +4,8 @@ export type Scalars = {
4
4
  String: string;
5
5
  Boolean: boolean;
6
6
  Cursor: any;
7
- JSON: any;
8
7
  Float: number;
8
+ JSON: any;
9
9
  Datetime: any;
10
10
  };
11
11
  /** The root query type which gives access points into the data universe. */
@@ -21,6 +21,8 @@ export interface Query {
21
21
  node: (Node | null);
22
22
  /** Reads and enables pagination through a set of `Class`. */
23
23
  allClasses: (ClassesConnection | null);
24
+ /** Reads and enables pagination through a set of `Consumable`. */
25
+ allConsumables: (ConsumablesConnection | null);
24
26
  /** Reads and enables pagination through a set of `EffectModifier`. */
25
27
  allEffectModifiers: (EffectModifiersConnection | null);
26
28
  /** Reads and enables pagination through a set of `Effect`. */
@@ -60,6 +62,7 @@ export interface Query {
60
62
  /** Reads and enables pagination through a set of `Skill`. */
61
63
  allSkills: (SkillsConnection | null);
62
64
  classById: (Class | null);
65
+ consumableById: (Consumable | null);
63
66
  effectModifierByEffect: (EffectModifier | null);
64
67
  effectById: (Effect | null);
65
68
  effectByDescid: (Effect | null);
@@ -79,6 +82,8 @@ export interface Query {
79
82
  skillById: (Skill | null);
80
83
  /** Reads a single `Class` using its globally unique `ID`. */
81
84
  class: (Class | null);
85
+ /** Reads a single `Consumable` using its globally unique `ID`. */
86
+ consumable: (Consumable | null);
82
87
  /** Reads a single `EffectModifier` using its globally unique `ID`. */
83
88
  effectModifier: (EffectModifier | null);
84
89
  /** Reads a single `Effect` using its globally unique `ID`. */
@@ -110,7 +115,7 @@ export interface Query {
110
115
  __typename: 'Query';
111
116
  }
112
117
  /** An object with a globally unique `ID`. */
113
- export type Node = (Query | Class | Path | EffectModifier | Effect | Equipment | Item | Familiar | FamiliarModifier | Monster | Outfit | FoldGroup | ItemModifier | Location | SkillModifier | Skill) & {
118
+ export type Node = (Query | Class | Path | Consumable | Item | Equipment | Familiar | FamiliarModifier | Monster | Outfit | FoldGroup | ItemModifier | EffectModifier | Effect | Location | SkillModifier | Skill) & {
114
119
  __isUnion?: true;
115
120
  };
116
121
  /** A connection to a list of `Class` values. */
@@ -183,110 +188,41 @@ export interface PageInfo {
183
188
  endCursor: (Scalars['Cursor'] | null);
184
189
  __typename: 'PageInfo';
185
190
  }
186
- /** A connection to a list of `EffectModifier` values. */
187
- export interface EffectModifiersConnection {
188
- /** A list of `EffectModifier` objects. */
189
- nodes: (EffectModifier | null)[];
190
- /** A list of edges which contains the `EffectModifier` and cursor to aid in pagination. */
191
- edges: EffectModifiersEdge[];
192
- /** Information to aid in pagination. */
193
- pageInfo: PageInfo;
194
- /** The count of *all* `EffectModifier` you could get from the connection. */
195
- totalCount: Scalars['Int'];
196
- __typename: 'EffectModifiersConnection';
197
- }
198
- export interface EffectModifier {
199
- /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
200
- nodeId: Scalars['ID'];
201
- effect: Scalars['Int'];
202
- modifiers: Scalars['JSON'];
203
- /** Reads a single `Effect` that is related to this `EffectModifier`. */
204
- effectByEffect: (Effect | null);
205
- __typename: 'EffectModifier';
206
- }
207
- export interface Effect {
208
- /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
209
- nodeId: Scalars['ID'];
210
- id: Scalars['Int'];
211
- name: Scalars['String'];
212
- descid: (Scalars['String'] | null);
213
- image: Scalars['String'];
214
- quality: EffectQuality;
215
- nohookah: Scalars['Boolean'];
216
- nopvp: Scalars['Boolean'];
217
- noremove: Scalars['Boolean'];
218
- song: Scalars['Boolean'];
219
- actions: (Scalars['String'] | null)[];
220
- ambiguous: Scalars['Boolean'];
221
- /** Reads a single `EffectModifier` that is related to this `Effect`. */
222
- effectModifierByEffect: (EffectModifier | null);
223
- /**
224
- * @deprecated Please use effectModifierByEffect instead
225
- * Reads and enables pagination through a set of `EffectModifier`.
226
- */
227
- effectModifiersByEffect: EffectModifiersConnection;
228
- __typename: 'Effect';
229
- }
230
- export type EffectQuality = 'BAD' | 'GOOD' | 'NEUTRAL';
231
- /** Methods to use when ordering `EffectModifier`. */
232
- export type EffectModifiersOrderBy = 'NATURAL' | 'EFFECT_ASC' | 'EFFECT_DESC' | 'MODIFIERS_ASC' | 'MODIFIERS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
233
- /** A `EffectModifier` edge in the connection. */
234
- export interface EffectModifiersEdge {
235
- /** A cursor for use in pagination. */
236
- cursor: (Scalars['Cursor'] | null);
237
- /** The `EffectModifier` at the end of the edge. */
238
- node: (EffectModifier | null);
239
- __typename: 'EffectModifiersEdge';
240
- }
241
- /** A connection to a list of `Effect` values. */
242
- export interface EffectsConnection {
243
- /** A list of `Effect` objects. */
244
- nodes: (Effect | null)[];
245
- /** A list of edges which contains the `Effect` and cursor to aid in pagination. */
246
- edges: EffectsEdge[];
247
- /** Information to aid in pagination. */
248
- pageInfo: PageInfo;
249
- /** The count of *all* `Effect` you could get from the connection. */
250
- totalCount: Scalars['Int'];
251
- __typename: 'EffectsConnection';
252
- }
253
- /** A `Effect` edge in the connection. */
254
- export interface EffectsEdge {
255
- /** A cursor for use in pagination. */
256
- cursor: (Scalars['Cursor'] | null);
257
- /** The `Effect` at the end of the edge. */
258
- node: (Effect | null);
259
- __typename: 'EffectsEdge';
260
- }
261
- /** Methods to use when ordering `Effect`. */
262
- export type EffectsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCID_ASC' | 'DESCID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'QUALITY_ASC' | 'QUALITY_DESC' | 'NOHOOKAH_ASC' | 'NOHOOKAH_DESC' | 'NOPVP_ASC' | 'NOPVP_DESC' | 'NOREMOVE_ASC' | 'NOREMOVE_DESC' | 'SONG_ASC' | 'SONG_DESC' | 'ACTIONS_ASC' | 'ACTIONS_DESC' | 'AMBIGUOUS_ASC' | 'AMBIGUOUS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
263
- /** A connection to a list of `Equipment` values. */
264
- export interface EquipmentConnection {
265
- /** A list of `Equipment` objects. */
266
- nodes: (Equipment | null)[];
267
- /** A list of edges which contains the `Equipment` and cursor to aid in pagination. */
268
- edges: EquipmentEdge[];
191
+ /** A connection to a list of `Consumable` values. */
192
+ export interface ConsumablesConnection {
193
+ /** A list of `Consumable` objects. */
194
+ nodes: (Consumable | null)[];
195
+ /** A list of edges which contains the `Consumable` and cursor to aid in pagination. */
196
+ edges: ConsumablesEdge[];
269
197
  /** Information to aid in pagination. */
270
198
  pageInfo: PageInfo;
271
- /** The count of *all* `Equipment` you could get from the connection. */
199
+ /** The count of *all* `Consumable` you could get from the connection. */
272
200
  totalCount: Scalars['Int'];
273
- __typename: 'EquipmentConnection';
201
+ __typename: 'ConsumablesConnection';
274
202
  }
275
- export interface Equipment {
203
+ export interface Consumable {
276
204
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
277
205
  nodeId: Scalars['ID'];
278
206
  id: Scalars['Int'];
279
- item: (Scalars['Int'] | null);
280
- power: Scalars['Int'];
281
- musRequirement: Scalars['Int'];
282
- mysRequirement: Scalars['Int'];
283
- moxRequirement: Scalars['Int'];
284
- type: (Scalars['String'] | null);
285
- hands: (Scalars['Int'] | null);
286
- /** Reads a single `Item` that is related to this `Equipment`. */
287
- itemByItem: (Item | null);
288
- __typename: 'Equipment';
207
+ stomach: Scalars['Int'];
208
+ liver: Scalars['Int'];
209
+ spleen: Scalars['Int'];
210
+ levelRequirement: Scalars['Int'];
211
+ quality: (ConsumableQuality | null);
212
+ adventureRange: Scalars['String'];
213
+ adventures: Scalars['Float'];
214
+ muscle: Scalars['Float'];
215
+ muscleRange: Scalars['String'];
216
+ mysticality: Scalars['Float'];
217
+ mysticalityRange: Scalars['String'];
218
+ moxie: Scalars['Float'];
219
+ moxieRange: Scalars['String'];
220
+ notes: (Scalars['String'] | null);
221
+ /** Reads a single `Item` that is related to this `Consumable`. */
222
+ itemById: (Item | null);
223
+ __typename: 'Consumable';
289
224
  }
225
+ export type ConsumableQuality = 'EPIC' | 'AWESOME' | 'CHANGING' | 'CRAPPY' | 'DECENT' | 'DRIPPY' | 'GOOD' | 'NONE' | 'QUEST' | 'SUPER_EPIC' | 'SUPER_ULTRA_EPIC' | 'SUPER_ULTRA_MEGA_EPIC' | 'SUPER_ULTRA_MEGA_TURBO_EPIC';
290
226
  export interface Item {
291
227
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
292
228
  nodeId: Scalars['ID'];
@@ -302,8 +238,10 @@ export interface Item {
302
238
  autosell: Scalars['Int'];
303
239
  plural: (Scalars['String'] | null);
304
240
  ambiguous: Scalars['Boolean'];
305
- /** Reads and enables pagination through a set of `Equipment`. */
306
- equipmentByItem: EquipmentConnection;
241
+ /** Reads a single `Equipment` that is related to this `Item`. */
242
+ equipmentById: (Equipment | null);
243
+ /** Reads a single `Consumable` that is related to this `Item`. */
244
+ consumableById: (Consumable | null);
307
245
  /** Reads and enables pagination through a set of `Familiar`. */
308
246
  familiarsByLarva: FamiliarsConnection;
309
247
  /** Reads and enables pagination through a set of `Familiar`. */
@@ -318,19 +256,23 @@ export interface Item {
318
256
  foldablesByItem: FoldablesConnection;
319
257
  /** Reads a single `ItemModifier` that is related to this `Item`. */
320
258
  itemModifierByItem: (ItemModifier | null);
321
- /**
322
- * @deprecated Please use itemModifierByItem instead
323
- * Reads and enables pagination through a set of `ItemModifier`.
324
- */
325
- itemModifiersByItem: ItemModifiersConnection;
326
259
  __typename: 'Item';
327
260
  }
328
261
  export type ItemUse = 'ACCESSORY' | 'AVATAR' | 'BOOTSKIN' | 'BOOTSPUR' | 'BOUNTY' | 'CANDY' | 'CANDY1' | 'CANDY2' | 'CARD' | 'CHOCOLATE' | 'COMBAT' | 'COMBAT_REUSABLE' | 'CONTAINER' | 'COOK' | 'CURSE' | 'DRINK' | 'DRINK_HELPER' | 'FAMILIAR' | 'FANCY' | 'FOLDER' | 'FOOD' | 'FOOD_HELPER' | 'GROW' | 'GUARDIAN' | 'HAT' | 'MATCHABLE' | 'MESSAGE' | 'MIX' | 'MULTIPLE' | 'OFFHAND' | 'PACKAGE' | 'PANTS' | 'PASTE' | 'POKEPILL' | 'POTION' | 'REUSABLE' | 'SHIRT' | 'SINGLE' | 'SIXGUN' | 'SMITH' | 'SOLO' | 'SPHERE' | 'SPLEEN' | 'STICKER' | 'USABLE' | 'WEAPON' | 'ZAP';
329
- /** Methods to use when ordering `Equipment`. */
330
- export type EquipmentOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'ITEM_ASC' | 'ITEM_DESC' | 'POWER_ASC' | 'POWER_DESC' | 'MUS_REQUIREMENT_ASC' | 'MUS_REQUIREMENT_DESC' | 'MYS_REQUIREMENT_ASC' | 'MYS_REQUIREMENT_DESC' | 'MOX_REQUIREMENT_ASC' | 'MOX_REQUIREMENT_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'HANDS_ASC' | 'HANDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
331
- export type FamiliarCategory = 'BLOCK' | 'COMBAT0' | 'COMBAT1' | 'DELEVEL' | 'DROP' | 'HP0' | 'HP1' | 'ITEM0' | 'ITEM1' | 'ITEM2' | 'ITEM3' | 'MEAT0' | 'MEAT1' | 'MP0' | 'MP1' | 'OTHER0' | 'OTHER1' | 'PASSIVE' | 'STAT0' | 'STAT1' | 'STAT2' | 'STAT3' | 'UNDERWATER' | 'VARIABLE';
332
- export type MonsterDropCategory = 'A' | 'C' | 'F' | 'M' | 'N' | 'P';
333
- export type MonsterElement = 'BAD_SPELLING' | 'COLD' | 'CUTE' | 'HOT' | 'SHADOW' | 'SLEAZE' | 'SLIME' | 'SPOOKY' | 'STENCH' | 'SUPERCOLD';
262
+ export interface Equipment {
263
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
264
+ nodeId: Scalars['ID'];
265
+ id: Scalars['Int'];
266
+ power: Scalars['Int'];
267
+ musRequirement: Scalars['Int'];
268
+ mysRequirement: Scalars['Int'];
269
+ moxRequirement: Scalars['Int'];
270
+ type: (Scalars['String'] | null);
271
+ hands: (Scalars['Int'] | null);
272
+ /** Reads a single `Item` that is related to this `Equipment`. */
273
+ itemById: (Item | null);
274
+ __typename: 'Equipment';
275
+ }
334
276
  /** A connection to a list of `Familiar` values. */
335
277
  export interface FamiliarsConnection {
336
278
  /** A list of `Familiar` objects. */
@@ -363,13 +305,9 @@ export interface Familiar {
363
305
  itemByEquipment: (Item | null);
364
306
  /** Reads a single `FamiliarModifier` that is related to this `Familiar`. */
365
307
  familiarModifierByFamiliar: (FamiliarModifier | null);
366
- /**
367
- * @deprecated Please use familiarModifierByFamiliar instead
368
- * Reads and enables pagination through a set of `FamiliarModifier`.
369
- */
370
- familiarModifiersByFamiliar: FamiliarModifiersConnection;
371
308
  __typename: 'Familiar';
372
309
  }
310
+ export type FamiliarCategory = 'BLOCK' | 'COMBAT0' | 'COMBAT1' | 'DELEVEL' | 'DROP' | 'HP0' | 'HP1' | 'ITEM0' | 'ITEM1' | 'ITEM2' | 'ITEM3' | 'MEAT0' | 'MEAT1' | 'MP0' | 'MP1' | 'OTHER0' | 'OTHER1' | 'PASSIVE' | 'STAT0' | 'STAT1' | 'STAT2' | 'STAT3' | 'UNDERWATER' | 'VARIABLE';
373
311
  export interface FamiliarModifier {
374
312
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
375
313
  nodeId: Scalars['ID'];
@@ -379,28 +317,6 @@ export interface FamiliarModifier {
379
317
  familiarByFamiliar: (Familiar | null);
380
318
  __typename: 'FamiliarModifier';
381
319
  }
382
- /** A connection to a list of `FamiliarModifier` values. */
383
- export interface FamiliarModifiersConnection {
384
- /** A list of `FamiliarModifier` objects. */
385
- nodes: (FamiliarModifier | null)[];
386
- /** A list of edges which contains the `FamiliarModifier` and cursor to aid in pagination. */
387
- edges: FamiliarModifiersEdge[];
388
- /** Information to aid in pagination. */
389
- pageInfo: PageInfo;
390
- /** The count of *all* `FamiliarModifier` you could get from the connection. */
391
- totalCount: Scalars['Int'];
392
- __typename: 'FamiliarModifiersConnection';
393
- }
394
- /** A `FamiliarModifier` edge in the connection. */
395
- export interface FamiliarModifiersEdge {
396
- /** A cursor for use in pagination. */
397
- cursor: (Scalars['Cursor'] | null);
398
- /** The `FamiliarModifier` at the end of the edge. */
399
- node: (FamiliarModifier | null);
400
- __typename: 'FamiliarModifiersEdge';
401
- }
402
- /** Methods to use when ordering `FamiliarModifier`. */
403
- export type FamiliarModifiersOrderBy = 'NATURAL' | 'FAMILIAR_ASC' | 'FAMILIAR_DESC' | 'MODIFIERS_ASC' | 'MODIFIERS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
404
320
  /** A `Familiar` edge in the connection. */
405
321
  export interface FamiliarsEdge {
406
322
  /** A cursor for use in pagination. */
@@ -434,6 +350,7 @@ export interface MonsterDrop {
434
350
  itemByItem: (Item | null);
435
351
  __typename: 'MonsterDrop';
436
352
  }
353
+ export type MonsterDropCategory = 'A' | 'C' | 'F' | 'M' | 'N' | 'P';
437
354
  export interface Monster {
438
355
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
439
356
  nodeId: Scalars['ID'];
@@ -458,7 +375,8 @@ export interface Monster {
458
375
  itemBlockChance: Scalars['Float'];
459
376
  lucky: Scalars['Boolean'];
460
377
  manuel: (Scalars['String'] | null);
461
- meat: Scalars['String'];
378
+ meat: (Scalars['Float'] | null);
379
+ meatExpression: (Scalars['String'] | null);
462
380
  monsterLevelMultiplier: Scalars['String'];
463
381
  name: Scalars['String'];
464
382
  nobanish: Scalars['Boolean'];
@@ -485,6 +403,7 @@ export interface Monster {
485
403
  monsterDropsByMonster: MonsterDropsConnection;
486
404
  __typename: 'Monster';
487
405
  }
406
+ export type MonsterElement = 'BAD_SPELLING' | 'COLD' | 'CUTE' | 'HOT' | 'SHADOW' | 'SLEAZE' | 'SLIME' | 'SPOOKY' | 'STENCH' | 'SUPERCOLD';
488
407
  /** Methods to use when ordering `MonsterDrop`. */
489
408
  export type MonsterDropsOrderBy = 'NATURAL' | 'MONSTER_ASC' | 'MONSTER_DESC' | 'ITEM_ASC' | 'ITEM_DESC' | 'RATE_ASC' | 'RATE_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC';
490
409
  /** A `MonsterDrop` edge in the connection. */
@@ -619,67 +538,185 @@ export interface ItemModifier {
619
538
  itemByItem: (Item | null);
620
539
  __typename: 'ItemModifier';
621
540
  }
622
- /** A connection to a list of `ItemModifier` values. */
623
- export interface ItemModifiersConnection {
624
- /** A list of `ItemModifier` objects. */
625
- nodes: (ItemModifier | null)[];
626
- /** A list of edges which contains the `ItemModifier` and cursor to aid in pagination. */
627
- edges: ItemModifiersEdge[];
541
+ /** A `Consumable` edge in the connection. */
542
+ export interface ConsumablesEdge {
543
+ /** A cursor for use in pagination. */
544
+ cursor: (Scalars['Cursor'] | null);
545
+ /** The `Consumable` at the end of the edge. */
546
+ node: (Consumable | null);
547
+ __typename: 'ConsumablesEdge';
548
+ }
549
+ /** Methods to use when ordering `Consumable`. */
550
+ export type ConsumablesOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'STOMACH_ASC' | 'STOMACH_DESC' | 'LIVER_ASC' | 'LIVER_DESC' | 'SPLEEN_ASC' | 'SPLEEN_DESC' | 'LEVEL_REQUIREMENT_ASC' | 'LEVEL_REQUIREMENT_DESC' | 'QUALITY_ASC' | 'QUALITY_DESC' | 'ADVENTURE_RANGE_ASC' | 'ADVENTURE_RANGE_DESC' | 'ADVENTURES_ASC' | 'ADVENTURES_DESC' | 'MUSCLE_ASC' | 'MUSCLE_DESC' | 'MUSCLE_RANGE_ASC' | 'MUSCLE_RANGE_DESC' | 'MYSTICALITY_ASC' | 'MYSTICALITY_DESC' | 'MYSTICALITY_RANGE_ASC' | 'MYSTICALITY_RANGE_DESC' | 'MOXIE_ASC' | 'MOXIE_DESC' | 'MOXIE_RANGE_ASC' | 'MOXIE_RANGE_DESC' | 'NOTES_ASC' | 'NOTES_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
551
+ /** A connection to a list of `EffectModifier` values. */
552
+ export interface EffectModifiersConnection {
553
+ /** A list of `EffectModifier` objects. */
554
+ nodes: (EffectModifier | null)[];
555
+ /** A list of edges which contains the `EffectModifier` and cursor to aid in pagination. */
556
+ edges: EffectModifiersEdge[];
628
557
  /** Information to aid in pagination. */
629
558
  pageInfo: PageInfo;
630
- /** The count of *all* `ItemModifier` you could get from the connection. */
559
+ /** The count of *all* `EffectModifier` you could get from the connection. */
631
560
  totalCount: Scalars['Int'];
632
- __typename: 'ItemModifiersConnection';
561
+ __typename: 'EffectModifiersConnection';
633
562
  }
634
- /** A `ItemModifier` edge in the connection. */
635
- export interface ItemModifiersEdge {
636
- /** A cursor for use in pagination. */
637
- cursor: (Scalars['Cursor'] | null);
638
- /** The `ItemModifier` at the end of the edge. */
639
- node: (ItemModifier | null);
640
- __typename: 'ItemModifiersEdge';
563
+ export interface EffectModifier {
564
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
565
+ nodeId: Scalars['ID'];
566
+ effect: Scalars['Int'];
567
+ modifiers: Scalars['JSON'];
568
+ /** Reads a single `Effect` that is related to this `EffectModifier`. */
569
+ effectByEffect: (Effect | null);
570
+ __typename: 'EffectModifier';
641
571
  }
642
- /** Methods to use when ordering `ItemModifier`. */
643
- export type ItemModifiersOrderBy = 'NATURAL' | 'ITEM_ASC' | 'ITEM_DESC' | 'MODIFIERS_ASC' | 'MODIFIERS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
644
- /** A `Equipment` edge in the connection. */
645
- export interface EquipmentEdge {
572
+ export interface Effect {
573
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
574
+ nodeId: Scalars['ID'];
575
+ id: Scalars['Int'];
576
+ name: Scalars['String'];
577
+ descid: (Scalars['String'] | null);
578
+ image: Scalars['String'];
579
+ quality: EffectQuality;
580
+ nohookah: Scalars['Boolean'];
581
+ nopvp: Scalars['Boolean'];
582
+ noremove: Scalars['Boolean'];
583
+ song: Scalars['Boolean'];
584
+ actions: (Scalars['String'] | null)[];
585
+ ambiguous: Scalars['Boolean'];
586
+ /** Reads a single `EffectModifier` that is related to this `Effect`. */
587
+ effectModifierByEffect: (EffectModifier | null);
588
+ __typename: 'Effect';
589
+ }
590
+ export type EffectQuality = 'BAD' | 'GOOD' | 'NEUTRAL';
591
+ /** A `EffectModifier` edge in the connection. */
592
+ export interface EffectModifiersEdge {
646
593
  /** A cursor for use in pagination. */
647
594
  cursor: (Scalars['Cursor'] | null);
648
- /** The `Equipment` at the end of the edge. */
649
- node: (Equipment | null);
650
- __typename: 'EquipmentEdge';
595
+ /** The `EffectModifier` at the end of the edge. */
596
+ node: (EffectModifier | null);
597
+ __typename: 'EffectModifiersEdge';
651
598
  }
652
- /** A connection to a list of `FoldGroup` values. */
653
- export interface FoldGroupsConnection {
654
- /** A list of `FoldGroup` objects. */
655
- nodes: (FoldGroup | null)[];
656
- /** A list of edges which contains the `FoldGroup` and cursor to aid in pagination. */
657
- edges: FoldGroupsEdge[];
599
+ /** Methods to use when ordering `EffectModifier`. */
600
+ export type EffectModifiersOrderBy = 'NATURAL' | 'EFFECT_ASC' | 'EFFECT_DESC' | 'MODIFIERS_ASC' | 'MODIFIERS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
601
+ /** A connection to a list of `Effect` values. */
602
+ export interface EffectsConnection {
603
+ /** A list of `Effect` objects. */
604
+ nodes: (Effect | null)[];
605
+ /** A list of edges which contains the `Effect` and cursor to aid in pagination. */
606
+ edges: EffectsEdge[];
658
607
  /** Information to aid in pagination. */
659
608
  pageInfo: PageInfo;
660
- /** The count of *all* `FoldGroup` you could get from the connection. */
609
+ /** The count of *all* `Effect` you could get from the connection. */
661
610
  totalCount: Scalars['Int'];
662
- __typename: 'FoldGroupsConnection';
611
+ __typename: 'EffectsConnection';
663
612
  }
664
- /** A `FoldGroup` edge in the connection. */
665
- export interface FoldGroupsEdge {
613
+ /** A `Effect` edge in the connection. */
614
+ export interface EffectsEdge {
666
615
  /** A cursor for use in pagination. */
667
616
  cursor: (Scalars['Cursor'] | null);
668
- /** The `FoldGroup` at the end of the edge. */
669
- node: (FoldGroup | null);
670
- __typename: 'FoldGroupsEdge';
617
+ /** The `Effect` at the end of the edge. */
618
+ node: (Effect | null);
619
+ __typename: 'EffectsEdge';
671
620
  }
672
- /** Methods to use when ordering `FoldGroup`. */
673
- export type FoldGroupsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DAMAGE_ASC' | 'DAMAGE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
674
- /** A connection to a list of `Item` values. */
675
- export interface ItemsConnection {
676
- /** A list of `Item` objects. */
677
- nodes: (Item | null)[];
678
- /** A list of edges which contains the `Item` and cursor to aid in pagination. */
679
- edges: ItemsEdge[];
621
+ /** Methods to use when ordering `Effect`. */
622
+ export type EffectsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCID_ASC' | 'DESCID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'QUALITY_ASC' | 'QUALITY_DESC' | 'NOHOOKAH_ASC' | 'NOHOOKAH_DESC' | 'NOPVP_ASC' | 'NOPVP_DESC' | 'NOREMOVE_ASC' | 'NOREMOVE_DESC' | 'SONG_ASC' | 'SONG_DESC' | 'ACTIONS_ASC' | 'ACTIONS_DESC' | 'AMBIGUOUS_ASC' | 'AMBIGUOUS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
623
+ /** A connection to a list of `Equipment` values. */
624
+ export interface EquipmentConnection {
625
+ /** A list of `Equipment` objects. */
626
+ nodes: (Equipment | null)[];
627
+ /** A list of edges which contains the `Equipment` and cursor to aid in pagination. */
628
+ edges: EquipmentEdge[];
680
629
  /** Information to aid in pagination. */
681
630
  pageInfo: PageInfo;
682
- /** The count of *all* `Item` you could get from the connection. */
631
+ /** The count of *all* `Equipment` you could get from the connection. */
632
+ totalCount: Scalars['Int'];
633
+ __typename: 'EquipmentConnection';
634
+ }
635
+ /** A `Equipment` edge in the connection. */
636
+ export interface EquipmentEdge {
637
+ /** A cursor for use in pagination. */
638
+ cursor: (Scalars['Cursor'] | null);
639
+ /** The `Equipment` at the end of the edge. */
640
+ node: (Equipment | null);
641
+ __typename: 'EquipmentEdge';
642
+ }
643
+ /** Methods to use when ordering `Equipment`. */
644
+ export type EquipmentOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'POWER_ASC' | 'POWER_DESC' | 'MUS_REQUIREMENT_ASC' | 'MUS_REQUIREMENT_DESC' | 'MYS_REQUIREMENT_ASC' | 'MYS_REQUIREMENT_DESC' | 'MOX_REQUIREMENT_ASC' | 'MOX_REQUIREMENT_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'HANDS_ASC' | 'HANDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
645
+ /** A connection to a list of `FamiliarModifier` values. */
646
+ export interface FamiliarModifiersConnection {
647
+ /** A list of `FamiliarModifier` objects. */
648
+ nodes: (FamiliarModifier | null)[];
649
+ /** A list of edges which contains the `FamiliarModifier` and cursor to aid in pagination. */
650
+ edges: FamiliarModifiersEdge[];
651
+ /** Information to aid in pagination. */
652
+ pageInfo: PageInfo;
653
+ /** The count of *all* `FamiliarModifier` you could get from the connection. */
654
+ totalCount: Scalars['Int'];
655
+ __typename: 'FamiliarModifiersConnection';
656
+ }
657
+ /** A `FamiliarModifier` edge in the connection. */
658
+ export interface FamiliarModifiersEdge {
659
+ /** A cursor for use in pagination. */
660
+ cursor: (Scalars['Cursor'] | null);
661
+ /** The `FamiliarModifier` at the end of the edge. */
662
+ node: (FamiliarModifier | null);
663
+ __typename: 'FamiliarModifiersEdge';
664
+ }
665
+ /** Methods to use when ordering `FamiliarModifier`. */
666
+ export type FamiliarModifiersOrderBy = 'NATURAL' | 'FAMILIAR_ASC' | 'FAMILIAR_DESC' | 'MODIFIERS_ASC' | 'MODIFIERS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
667
+ /** A connection to a list of `FoldGroup` values. */
668
+ export interface FoldGroupsConnection {
669
+ /** A list of `FoldGroup` objects. */
670
+ nodes: (FoldGroup | null)[];
671
+ /** A list of edges which contains the `FoldGroup` and cursor to aid in pagination. */
672
+ edges: FoldGroupsEdge[];
673
+ /** Information to aid in pagination. */
674
+ pageInfo: PageInfo;
675
+ /** The count of *all* `FoldGroup` you could get from the connection. */
676
+ totalCount: Scalars['Int'];
677
+ __typename: 'FoldGroupsConnection';
678
+ }
679
+ /** A `FoldGroup` edge in the connection. */
680
+ export interface FoldGroupsEdge {
681
+ /** A cursor for use in pagination. */
682
+ cursor: (Scalars['Cursor'] | null);
683
+ /** The `FoldGroup` at the end of the edge. */
684
+ node: (FoldGroup | null);
685
+ __typename: 'FoldGroupsEdge';
686
+ }
687
+ /** Methods to use when ordering `FoldGroup`. */
688
+ export type FoldGroupsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DAMAGE_ASC' | 'DAMAGE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
689
+ /** A connection to a list of `ItemModifier` values. */
690
+ export interface ItemModifiersConnection {
691
+ /** A list of `ItemModifier` objects. */
692
+ nodes: (ItemModifier | null)[];
693
+ /** A list of edges which contains the `ItemModifier` and cursor to aid in pagination. */
694
+ edges: ItemModifiersEdge[];
695
+ /** Information to aid in pagination. */
696
+ pageInfo: PageInfo;
697
+ /** The count of *all* `ItemModifier` you could get from the connection. */
698
+ totalCount: Scalars['Int'];
699
+ __typename: 'ItemModifiersConnection';
700
+ }
701
+ /** A `ItemModifier` edge in the connection. */
702
+ export interface ItemModifiersEdge {
703
+ /** A cursor for use in pagination. */
704
+ cursor: (Scalars['Cursor'] | null);
705
+ /** The `ItemModifier` at the end of the edge. */
706
+ node: (ItemModifier | null);
707
+ __typename: 'ItemModifiersEdge';
708
+ }
709
+ /** Methods to use when ordering `ItemModifier`. */
710
+ export type ItemModifiersOrderBy = 'NATURAL' | 'ITEM_ASC' | 'ITEM_DESC' | 'MODIFIERS_ASC' | 'MODIFIERS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
711
+ /** A connection to a list of `Item` values. */
712
+ export interface ItemsConnection {
713
+ /** A list of `Item` objects. */
714
+ nodes: (Item | null)[];
715
+ /** A list of edges which contains the `Item` and cursor to aid in pagination. */
716
+ edges: ItemsEdge[];
717
+ /** Information to aid in pagination. */
718
+ pageInfo: PageInfo;
719
+ /** The count of *all* `Item` you could get from the connection. */
683
720
  totalCount: Scalars['Int'];
684
721
  __typename: 'ItemsConnection';
685
722
  }
@@ -779,7 +816,7 @@ export interface MonstersEdge {
779
816
  __typename: 'MonstersEdge';
780
817
  }
781
818
  /** Methods to use when ordering `Monster`. */
782
- export type MonstersOrderBy = 'NATURAL' | 'AMBIGUOUS_ASC' | 'AMBIGUOUS_DESC' | 'ARTICLE_ASC' | 'ARTICLE_DESC' | 'ATTACK_ASC' | 'ATTACK_DESC' | 'BOSS_ASC' | 'BOSS_DESC' | 'DEFENCE_ASC' | 'DEFENCE_DESC' | 'DRIPPY_ASC' | 'DRIPPY_DESC' | 'ELEMENT_ASC' | 'ELEMENT_DESC' | 'ELEMENTAL_ATTACK_ASC' | 'ELEMENTAL_ATTACK_DESC' | 'ELEMENTAL_DEFENCE_ASC' | 'ELEMENTAL_DEFENCE_DESC' | 'ELEMENTAL_RESISTANCE_ASC' | 'ELEMENTAL_RESISTANCE_DESC' | 'EXPERIENCE_ASC' | 'EXPERIENCE_DESC' | 'FREE_ASC' | 'FREE_DESC' | 'GHOST_ASC' | 'GHOST_DESC' | 'GROUP_SIZE_ASC' | 'GROUP_SIZE_DESC' | 'HP_ASC' | 'HP_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INITIATIVE_ASC' | 'INITIATIVE_DESC' | 'ITEM_BLOCK_CHANCE_ASC' | 'ITEM_BLOCK_CHANCE_DESC' | 'LUCKY_ASC' | 'LUCKY_DESC' | 'MANUEL_ASC' | 'MANUEL_DESC' | 'MEAT_ASC' | 'MEAT_DESC' | 'MONSTER_LEVEL_MULTIPLIER_ASC' | 'MONSTER_LEVEL_MULTIPLIER_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NOBANISH_ASC' | 'NOBANISH_DESC' | 'NOCOPY_ASC' | 'NOCOPY_DESC' | 'NOMANUEL_ASC' | 'NOMANUEL_DESC' | 'NOWANDER_ASC' | 'NOWANDER_DESC' | 'NOWISH_ASC' | 'NOWISH_DESC' | 'PHYLUM_ASC' | 'PHYLUM_DESC' | 'PHYSICAL_RESISTANCE_ASC' | 'PHYSICAL_RESISTANCE_DESC' | 'POISON_ASC' | 'POISON_DESC' | 'SCALING_ASC' | 'SCALING_DESC' | 'SCALING_CAP_ASC' | 'SCALING_CAP_DESC' | 'SCALING_FLOOR_ASC' | 'SCALING_FLOOR_DESC' | 'SKILL_BLOCK_CHANCE_ASC' | 'SKILL_BLOCK_CHANCE_DESC' | 'SNAKE_ASC' | 'SNAKE_DESC' | 'SPELL_BLOCK_CHANCE_ASC' | 'SPELL_BLOCK_CHANCE_DESC' | 'SPRINKLES_ASC' | 'SPRINKLES_DESC' | 'SUPERLIKELY_ASC' | 'SUPERLIKELY_DESC' | 'ULTRARARE_ASC' | 'ULTRARARE_DESC' | 'WANDERER_ASC' | 'WANDERER_DESC' | 'WIKI_ASC' | 'WIKI_DESC' | 'WISH_ASC' | 'WISH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
819
+ export type MonstersOrderBy = 'NATURAL' | 'AMBIGUOUS_ASC' | 'AMBIGUOUS_DESC' | 'ARTICLE_ASC' | 'ARTICLE_DESC' | 'ATTACK_ASC' | 'ATTACK_DESC' | 'BOSS_ASC' | 'BOSS_DESC' | 'DEFENCE_ASC' | 'DEFENCE_DESC' | 'DRIPPY_ASC' | 'DRIPPY_DESC' | 'ELEMENT_ASC' | 'ELEMENT_DESC' | 'ELEMENTAL_ATTACK_ASC' | 'ELEMENTAL_ATTACK_DESC' | 'ELEMENTAL_DEFENCE_ASC' | 'ELEMENTAL_DEFENCE_DESC' | 'ELEMENTAL_RESISTANCE_ASC' | 'ELEMENTAL_RESISTANCE_DESC' | 'EXPERIENCE_ASC' | 'EXPERIENCE_DESC' | 'FREE_ASC' | 'FREE_DESC' | 'GHOST_ASC' | 'GHOST_DESC' | 'GROUP_SIZE_ASC' | 'GROUP_SIZE_DESC' | 'HP_ASC' | 'HP_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INITIATIVE_ASC' | 'INITIATIVE_DESC' | 'ITEM_BLOCK_CHANCE_ASC' | 'ITEM_BLOCK_CHANCE_DESC' | 'LUCKY_ASC' | 'LUCKY_DESC' | 'MANUEL_ASC' | 'MANUEL_DESC' | 'MEAT_ASC' | 'MEAT_DESC' | 'MEAT_EXPRESSION_ASC' | 'MEAT_EXPRESSION_DESC' | 'MONSTER_LEVEL_MULTIPLIER_ASC' | 'MONSTER_LEVEL_MULTIPLIER_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NOBANISH_ASC' | 'NOBANISH_DESC' | 'NOCOPY_ASC' | 'NOCOPY_DESC' | 'NOMANUEL_ASC' | 'NOMANUEL_DESC' | 'NOWANDER_ASC' | 'NOWANDER_DESC' | 'NOWISH_ASC' | 'NOWISH_DESC' | 'PHYLUM_ASC' | 'PHYLUM_DESC' | 'PHYSICAL_RESISTANCE_ASC' | 'PHYSICAL_RESISTANCE_DESC' | 'POISON_ASC' | 'POISON_DESC' | 'SCALING_ASC' | 'SCALING_DESC' | 'SCALING_CAP_ASC' | 'SCALING_CAP_DESC' | 'SCALING_FLOOR_ASC' | 'SCALING_FLOOR_DESC' | 'SKILL_BLOCK_CHANCE_ASC' | 'SKILL_BLOCK_CHANCE_DESC' | 'SNAKE_ASC' | 'SNAKE_DESC' | 'SPELL_BLOCK_CHANCE_ASC' | 'SPELL_BLOCK_CHANCE_DESC' | 'SPRINKLES_ASC' | 'SPRINKLES_DESC' | 'SUPERLIKELY_ASC' | 'SUPERLIKELY_DESC' | 'ULTRARARE_ASC' | 'ULTRARARE_DESC' | 'WANDERER_ASC' | 'WANDERER_DESC' | 'WIKI_ASC' | 'WIKI_DESC' | 'WISH_ASC' | 'WISH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
783
820
  /** A connection to a list of `Outfit` values. */
784
821
  export interface OutfitsConnection {
785
822
  /** A list of `Outfit` objects. */
@@ -860,16 +897,9 @@ export interface Skill {
860
897
  ambiguous: Scalars['Boolean'];
861
898
  /** Reads a single `SkillModifier` that is related to this `Skill`. */
862
899
  skillModifierBySkill: (SkillModifier | null);
863
- /**
864
- * @deprecated Please use skillModifierBySkill instead
865
- * Reads and enables pagination through a set of `SkillModifier`.
866
- */
867
- skillModifiersBySkill: SkillModifiersConnection;
868
900
  __typename: 'Skill';
869
901
  }
870
902
  export type SkillTag = 'COMBAT' | 'EFFECT' | 'EXPRESSION' | 'HEAL' | 'ITEM' | 'NC' | 'OTHER' | 'PASSIVE' | 'SELF' | 'SONG' | 'WALK';
871
- /** Methods to use when ordering `SkillModifier`. */
872
- export type SkillModifiersOrderBy = 'NATURAL' | 'SKILL_ASC' | 'SKILL_DESC' | 'MODIFIERS_ASC' | 'MODIFIERS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
873
903
  /** A `SkillModifier` edge in the connection. */
874
904
  export interface SkillModifiersEdge {
875
905
  /** A cursor for use in pagination. */
@@ -878,6 +908,8 @@ export interface SkillModifiersEdge {
878
908
  node: (SkillModifier | null);
879
909
  __typename: 'SkillModifiersEdge';
880
910
  }
911
+ /** Methods to use when ordering `SkillModifier`. */
912
+ export type SkillModifiersOrderBy = 'NATURAL' | 'SKILL_ASC' | 'SKILL_DESC' | 'MODIFIERS_ASC' | 'MODIFIERS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
881
913
  /** A connection to a list of `Skill` values. */
882
914
  export interface SkillsConnection {
883
915
  /** A list of `Skill` objects. */
@@ -904,6 +936,8 @@ export type SkillsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAM
904
936
  export interface Mutation {
905
937
  /** Creates a single `Class`. */
906
938
  createClass: (CreateClassPayload | null);
939
+ /** Creates a single `Consumable`. */
940
+ createConsumable: (CreateConsumablePayload | null);
907
941
  /** Creates a single `EffectModifier`. */
908
942
  createEffectModifier: (CreateEffectModifierPayload | null);
909
943
  /** Creates a single `Effect`. */
@@ -946,6 +980,10 @@ export interface Mutation {
946
980
  updateClass: (UpdateClassPayload | null);
947
981
  /** Updates a single `Class` using a unique key and a patch. */
948
982
  updateClassById: (UpdateClassPayload | null);
983
+ /** Updates a single `Consumable` using its globally unique id and a patch. */
984
+ updateConsumable: (UpdateConsumablePayload | null);
985
+ /** Updates a single `Consumable` using a unique key and a patch. */
986
+ updateConsumableById: (UpdateConsumablePayload | null);
949
987
  /** Updates a single `EffectModifier` using its globally unique id and a patch. */
950
988
  updateEffectModifier: (UpdateEffectModifierPayload | null);
951
989
  /** Updates a single `EffectModifier` using a unique key and a patch. */
@@ -1012,6 +1050,10 @@ export interface Mutation {
1012
1050
  deleteClass: (DeleteClassPayload | null);
1013
1051
  /** Deletes a single `Class` using a unique key. */
1014
1052
  deleteClassById: (DeleteClassPayload | null);
1053
+ /** Deletes a single `Consumable` using its globally unique id. */
1054
+ deleteConsumable: (DeleteConsumablePayload | null);
1055
+ /** Deletes a single `Consumable` using a unique key. */
1056
+ deleteConsumableById: (DeleteConsumablePayload | null);
1015
1057
  /** Deletes a single `EffectModifier` using its globally unique id. */
1016
1058
  deleteEffectModifier: (DeleteEffectModifierPayload | null);
1017
1059
  /** Deletes a single `EffectModifier` using a unique key. */
@@ -1093,6 +1135,23 @@ export interface CreateClassPayload {
1093
1135
  classEdge: (ClassesEdge | null);
1094
1136
  __typename: 'CreateClassPayload';
1095
1137
  }
1138
+ /** The output of our create `Consumable` mutation. */
1139
+ export interface CreateConsumablePayload {
1140
+ /**
1141
+ * The exact same `clientMutationId` that was provided in the mutation input,
1142
+ * unchanged and unused. May be used by a client to track mutations.
1143
+ */
1144
+ clientMutationId: (Scalars['String'] | null);
1145
+ /** The `Consumable` that was created by this mutation. */
1146
+ consumable: (Consumable | null);
1147
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1148
+ query: (Query | null);
1149
+ /** Reads a single `Item` that is related to this `Consumable`. */
1150
+ itemById: (Item | null);
1151
+ /** An edge for our `Consumable`. May be used by Relay 1. */
1152
+ consumableEdge: (ConsumablesEdge | null);
1153
+ __typename: 'CreateConsumablePayload';
1154
+ }
1096
1155
  /** The output of our create `EffectModifier` mutation. */
1097
1156
  export interface CreateEffectModifierPayload {
1098
1157
  /**
@@ -1137,7 +1196,7 @@ export interface CreateEquipmentPayload {
1137
1196
  /** Our root query field type. Allows us to run any query from our mutation payload. */
1138
1197
  query: (Query | null);
1139
1198
  /** Reads a single `Item` that is related to this `Equipment`. */
1140
- itemByItem: (Item | null);
1199
+ itemById: (Item | null);
1141
1200
  /** An edge for our `Equipment`. May be used by Relay 1. */
1142
1201
  equipmentEdge: (EquipmentEdge | null);
1143
1202
  __typename: 'CreateEquipmentPayload';
@@ -1425,6 +1484,23 @@ export interface UpdateClassPayload {
1425
1484
  classEdge: (ClassesEdge | null);
1426
1485
  __typename: 'UpdateClassPayload';
1427
1486
  }
1487
+ /** The output of our update `Consumable` mutation. */
1488
+ export interface UpdateConsumablePayload {
1489
+ /**
1490
+ * The exact same `clientMutationId` that was provided in the mutation input,
1491
+ * unchanged and unused. May be used by a client to track mutations.
1492
+ */
1493
+ clientMutationId: (Scalars['String'] | null);
1494
+ /** The `Consumable` that was updated by this mutation. */
1495
+ consumable: (Consumable | null);
1496
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1497
+ query: (Query | null);
1498
+ /** Reads a single `Item` that is related to this `Consumable`. */
1499
+ itemById: (Item | null);
1500
+ /** An edge for our `Consumable`. May be used by Relay 1. */
1501
+ consumableEdge: (ConsumablesEdge | null);
1502
+ __typename: 'UpdateConsumablePayload';
1503
+ }
1428
1504
  /** The output of our update `EffectModifier` mutation. */
1429
1505
  export interface UpdateEffectModifierPayload {
1430
1506
  /**
@@ -1469,7 +1545,7 @@ export interface UpdateEquipmentPayload {
1469
1545
  /** Our root query field type. Allows us to run any query from our mutation payload. */
1470
1546
  query: (Query | null);
1471
1547
  /** Reads a single `Item` that is related to this `Equipment`. */
1472
- itemByItem: (Item | null);
1548
+ itemById: (Item | null);
1473
1549
  /** An edge for our `Equipment`. May be used by Relay 1. */
1474
1550
  equipmentEdge: (EquipmentEdge | null);
1475
1551
  __typename: 'UpdateEquipmentPayload';
@@ -1667,6 +1743,24 @@ export interface DeleteClassPayload {
1667
1743
  classEdge: (ClassesEdge | null);
1668
1744
  __typename: 'DeleteClassPayload';
1669
1745
  }
1746
+ /** The output of our delete `Consumable` mutation. */
1747
+ export interface DeleteConsumablePayload {
1748
+ /**
1749
+ * The exact same `clientMutationId` that was provided in the mutation input,
1750
+ * unchanged and unused. May be used by a client to track mutations.
1751
+ */
1752
+ clientMutationId: (Scalars['String'] | null);
1753
+ /** The `Consumable` that was deleted by this mutation. */
1754
+ consumable: (Consumable | null);
1755
+ deletedConsumableId: (Scalars['ID'] | null);
1756
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1757
+ query: (Query | null);
1758
+ /** Reads a single `Item` that is related to this `Consumable`. */
1759
+ itemById: (Item | null);
1760
+ /** An edge for our `Consumable`. May be used by Relay 1. */
1761
+ consumableEdge: (ConsumablesEdge | null);
1762
+ __typename: 'DeleteConsumablePayload';
1763
+ }
1670
1764
  /** The output of our delete `EffectModifier` mutation. */
1671
1765
  export interface DeleteEffectModifierPayload {
1672
1766
  /**
@@ -1714,7 +1808,7 @@ export interface DeleteEquipmentPayload {
1714
1808
  /** Our root query field type. Allows us to run any query from our mutation payload. */
1715
1809
  query: (Query | null);
1716
1810
  /** Reads a single `Item` that is related to this `Equipment`. */
1717
- itemByItem: (Item | null);
1811
+ itemById: (Item | null);
1718
1812
  /** An edge for our `Equipment`. May be used by Relay 1. */
1719
1813
  equipmentEdge: (EquipmentEdge | null);
1720
1814
  __typename: 'DeleteEquipmentPayload';
@@ -1941,8 +2035,28 @@ export interface QueryGenqlSelection {
1941
2035
  orderBy?: (ClassesOrderBy[] | null);
1942
2036
  /** A condition to be used in determining which values should be returned by the collection. */
1943
2037
  condition?: (ClassCondition | null);
1944
- /** A filter to be used in determining which values should be returned by the collection. */
1945
- filter?: (ClassFilter | null);
2038
+ };
2039
+ });
2040
+ /** Reads and enables pagination through a set of `Consumable`. */
2041
+ allConsumables?: (ConsumablesConnectionGenqlSelection & {
2042
+ __args?: {
2043
+ /** Only read the first `n` values of the set. */
2044
+ first?: (Scalars['Int'] | null);
2045
+ /** Only read the last `n` values of the set. */
2046
+ last?: (Scalars['Int'] | null);
2047
+ /**
2048
+ * Skip the first `n` values from our `after` cursor, an alternative to cursor
2049
+ * based pagination. May not be used with `last`.
2050
+ */
2051
+ offset?: (Scalars['Int'] | null);
2052
+ /** Read all values in the set before (above) this cursor. */
2053
+ before?: (Scalars['Cursor'] | null);
2054
+ /** Read all values in the set after (below) this cursor. */
2055
+ after?: (Scalars['Cursor'] | null);
2056
+ /** The method to use when ordering `Consumable`. */
2057
+ orderBy?: (ConsumablesOrderBy[] | null);
2058
+ /** A condition to be used in determining which values should be returned by the collection. */
2059
+ condition?: (ConsumableCondition | null);
1946
2060
  };
1947
2061
  });
1948
2062
  /** Reads and enables pagination through a set of `EffectModifier`. */
@@ -1965,8 +2079,6 @@ export interface QueryGenqlSelection {
1965
2079
  orderBy?: (EffectModifiersOrderBy[] | null);
1966
2080
  /** A condition to be used in determining which values should be returned by the collection. */
1967
2081
  condition?: (EffectModifierCondition | null);
1968
- /** A filter to be used in determining which values should be returned by the collection. */
1969
- filter?: (EffectModifierFilter | null);
1970
2082
  };
1971
2083
  });
1972
2084
  /** Reads and enables pagination through a set of `Effect`. */
@@ -1989,8 +2101,6 @@ export interface QueryGenqlSelection {
1989
2101
  orderBy?: (EffectsOrderBy[] | null);
1990
2102
  /** A condition to be used in determining which values should be returned by the collection. */
1991
2103
  condition?: (EffectCondition | null);
1992
- /** A filter to be used in determining which values should be returned by the collection. */
1993
- filter?: (EffectFilter | null);
1994
2104
  };
1995
2105
  });
1996
2106
  /** Reads and enables pagination through a set of `Equipment`. */
@@ -2013,8 +2123,6 @@ export interface QueryGenqlSelection {
2013
2123
  orderBy?: (EquipmentOrderBy[] | null);
2014
2124
  /** A condition to be used in determining which values should be returned by the collection. */
2015
2125
  condition?: (EquipmentCondition | null);
2016
- /** A filter to be used in determining which values should be returned by the collection. */
2017
- filter?: (EquipmentFilter | null);
2018
2126
  };
2019
2127
  });
2020
2128
  /** Reads and enables pagination through a set of `FamiliarModifier`. */
@@ -2037,8 +2145,6 @@ export interface QueryGenqlSelection {
2037
2145
  orderBy?: (FamiliarModifiersOrderBy[] | null);
2038
2146
  /** A condition to be used in determining which values should be returned by the collection. */
2039
2147
  condition?: (FamiliarModifierCondition | null);
2040
- /** A filter to be used in determining which values should be returned by the collection. */
2041
- filter?: (FamiliarModifierFilter | null);
2042
2148
  };
2043
2149
  });
2044
2150
  /** Reads and enables pagination through a set of `Familiar`. */
@@ -2061,8 +2167,6 @@ export interface QueryGenqlSelection {
2061
2167
  orderBy?: (FamiliarsOrderBy[] | null);
2062
2168
  /** A condition to be used in determining which values should be returned by the collection. */
2063
2169
  condition?: (FamiliarCondition | null);
2064
- /** A filter to be used in determining which values should be returned by the collection. */
2065
- filter?: (FamiliarFilter | null);
2066
2170
  };
2067
2171
  });
2068
2172
  /** Reads and enables pagination through a set of `FoldGroup`. */
@@ -2085,8 +2189,6 @@ export interface QueryGenqlSelection {
2085
2189
  orderBy?: (FoldGroupsOrderBy[] | null);
2086
2190
  /** A condition to be used in determining which values should be returned by the collection. */
2087
2191
  condition?: (FoldGroupCondition | null);
2088
- /** A filter to be used in determining which values should be returned by the collection. */
2089
- filter?: (FoldGroupFilter | null);
2090
2192
  };
2091
2193
  });
2092
2194
  /** Reads and enables pagination through a set of `Foldable`. */
@@ -2109,8 +2211,6 @@ export interface QueryGenqlSelection {
2109
2211
  orderBy?: (FoldablesOrderBy[] | null);
2110
2212
  /** A condition to be used in determining which values should be returned by the collection. */
2111
2213
  condition?: (FoldableCondition | null);
2112
- /** A filter to be used in determining which values should be returned by the collection. */
2113
- filter?: (FoldableFilter | null);
2114
2214
  };
2115
2215
  });
2116
2216
  /** Reads and enables pagination through a set of `ItemModifier`. */
@@ -2133,8 +2233,6 @@ export interface QueryGenqlSelection {
2133
2233
  orderBy?: (ItemModifiersOrderBy[] | null);
2134
2234
  /** A condition to be used in determining which values should be returned by the collection. */
2135
2235
  condition?: (ItemModifierCondition | null);
2136
- /** A filter to be used in determining which values should be returned by the collection. */
2137
- filter?: (ItemModifierFilter | null);
2138
2236
  };
2139
2237
  });
2140
2238
  /** Reads and enables pagination through a set of `Item`. */
@@ -2157,8 +2255,6 @@ export interface QueryGenqlSelection {
2157
2255
  orderBy?: (ItemsOrderBy[] | null);
2158
2256
  /** A condition to be used in determining which values should be returned by the collection. */
2159
2257
  condition?: (ItemCondition | null);
2160
- /** A filter to be used in determining which values should be returned by the collection. */
2161
- filter?: (ItemFilter | null);
2162
2258
  };
2163
2259
  });
2164
2260
  /** Reads and enables pagination through a set of `Location`. */
@@ -2181,8 +2277,6 @@ export interface QueryGenqlSelection {
2181
2277
  orderBy?: (LocationsOrderBy[] | null);
2182
2278
  /** A condition to be used in determining which values should be returned by the collection. */
2183
2279
  condition?: (LocationCondition | null);
2184
- /** A filter to be used in determining which values should be returned by the collection. */
2185
- filter?: (LocationFilter | null);
2186
2280
  };
2187
2281
  });
2188
2282
  /** Reads and enables pagination through a set of `Meta`. */
@@ -2205,8 +2299,6 @@ export interface QueryGenqlSelection {
2205
2299
  orderBy?: (MetasOrderBy[] | null);
2206
2300
  /** A condition to be used in determining which values should be returned by the collection. */
2207
2301
  condition?: (MetaCondition | null);
2208
- /** A filter to be used in determining which values should be returned by the collection. */
2209
- filter?: (MetaFilter | null);
2210
2302
  };
2211
2303
  });
2212
2304
  /** Reads and enables pagination through a set of `MonsterDrop`. */
@@ -2229,8 +2321,6 @@ export interface QueryGenqlSelection {
2229
2321
  orderBy?: (MonsterDropsOrderBy[] | null);
2230
2322
  /** A condition to be used in determining which values should be returned by the collection. */
2231
2323
  condition?: (MonsterDropCondition | null);
2232
- /** A filter to be used in determining which values should be returned by the collection. */
2233
- filter?: (MonsterDropFilter | null);
2234
2324
  };
2235
2325
  });
2236
2326
  /** Reads and enables pagination through a set of `Monster`. */
@@ -2253,8 +2343,6 @@ export interface QueryGenqlSelection {
2253
2343
  orderBy?: (MonstersOrderBy[] | null);
2254
2344
  /** A condition to be used in determining which values should be returned by the collection. */
2255
2345
  condition?: (MonsterCondition | null);
2256
- /** A filter to be used in determining which values should be returned by the collection. */
2257
- filter?: (MonsterFilter | null);
2258
2346
  };
2259
2347
  });
2260
2348
  /** Reads and enables pagination through a set of `OutfitEquipment`. */
@@ -2277,8 +2365,6 @@ export interface QueryGenqlSelection {
2277
2365
  orderBy?: (OutfitEquipmentsOrderBy[] | null);
2278
2366
  /** A condition to be used in determining which values should be returned by the collection. */
2279
2367
  condition?: (OutfitEquipmentCondition | null);
2280
- /** A filter to be used in determining which values should be returned by the collection. */
2281
- filter?: (OutfitEquipmentFilter | null);
2282
2368
  };
2283
2369
  });
2284
2370
  /** Reads and enables pagination through a set of `OutfitTreat`. */
@@ -2301,8 +2387,6 @@ export interface QueryGenqlSelection {
2301
2387
  orderBy?: (OutfitTreatsOrderBy[] | null);
2302
2388
  /** A condition to be used in determining which values should be returned by the collection. */
2303
2389
  condition?: (OutfitTreatCondition | null);
2304
- /** A filter to be used in determining which values should be returned by the collection. */
2305
- filter?: (OutfitTreatFilter | null);
2306
2390
  };
2307
2391
  });
2308
2392
  /** Reads and enables pagination through a set of `Outfit`. */
@@ -2325,8 +2409,6 @@ export interface QueryGenqlSelection {
2325
2409
  orderBy?: (OutfitsOrderBy[] | null);
2326
2410
  /** A condition to be used in determining which values should be returned by the collection. */
2327
2411
  condition?: (OutfitCondition | null);
2328
- /** A filter to be used in determining which values should be returned by the collection. */
2329
- filter?: (OutfitFilter | null);
2330
2412
  };
2331
2413
  });
2332
2414
  /** Reads and enables pagination through a set of `Path`. */
@@ -2349,8 +2431,6 @@ export interface QueryGenqlSelection {
2349
2431
  orderBy?: (PathsOrderBy[] | null);
2350
2432
  /** A condition to be used in determining which values should be returned by the collection. */
2351
2433
  condition?: (PathCondition | null);
2352
- /** A filter to be used in determining which values should be returned by the collection. */
2353
- filter?: (PathFilter | null);
2354
2434
  };
2355
2435
  });
2356
2436
  /** Reads and enables pagination through a set of `SkillModifier`. */
@@ -2373,8 +2453,6 @@ export interface QueryGenqlSelection {
2373
2453
  orderBy?: (SkillModifiersOrderBy[] | null);
2374
2454
  /** A condition to be used in determining which values should be returned by the collection. */
2375
2455
  condition?: (SkillModifierCondition | null);
2376
- /** A filter to be used in determining which values should be returned by the collection. */
2377
- filter?: (SkillModifierFilter | null);
2378
2456
  };
2379
2457
  });
2380
2458
  /** Reads and enables pagination through a set of `Skill`. */
@@ -2397,8 +2475,6 @@ export interface QueryGenqlSelection {
2397
2475
  orderBy?: (SkillsOrderBy[] | null);
2398
2476
  /** A condition to be used in determining which values should be returned by the collection. */
2399
2477
  condition?: (SkillCondition | null);
2400
- /** A filter to be used in determining which values should be returned by the collection. */
2401
- filter?: (SkillFilter | null);
2402
2478
  };
2403
2479
  });
2404
2480
  classById?: (ClassGenqlSelection & {
@@ -2406,6 +2482,11 @@ export interface QueryGenqlSelection {
2406
2482
  id: Scalars['Int'];
2407
2483
  };
2408
2484
  });
2485
+ consumableById?: (ConsumableGenqlSelection & {
2486
+ __args: {
2487
+ id: Scalars['Int'];
2488
+ };
2489
+ });
2409
2490
  effectModifierByEffect?: (EffectModifierGenqlSelection & {
2410
2491
  __args: {
2411
2492
  effect: Scalars['Int'];
@@ -2498,6 +2579,13 @@ export interface QueryGenqlSelection {
2498
2579
  nodeId: Scalars['ID'];
2499
2580
  };
2500
2581
  });
2582
+ /** Reads a single `Consumable` using its globally unique `ID`. */
2583
+ consumable?: (ConsumableGenqlSelection & {
2584
+ __args: {
2585
+ /** The globally unique `ID` to be used in selecting a single `Consumable`. */
2586
+ nodeId: Scalars['ID'];
2587
+ };
2588
+ });
2501
2589
  /** Reads a single `EffectModifier` using its globally unique `ID`. */
2502
2590
  effectModifier?: (EffectModifierGenqlSelection & {
2503
2591
  __args: {
@@ -2606,16 +2694,17 @@ export interface NodeGenqlSelection {
2606
2694
  on_Query?: QueryGenqlSelection;
2607
2695
  on_Class?: ClassGenqlSelection;
2608
2696
  on_Path?: PathGenqlSelection;
2609
- on_EffectModifier?: EffectModifierGenqlSelection;
2610
- on_Effect?: EffectGenqlSelection;
2611
- on_Equipment?: EquipmentGenqlSelection;
2697
+ on_Consumable?: ConsumableGenqlSelection;
2612
2698
  on_Item?: ItemGenqlSelection;
2699
+ on_Equipment?: EquipmentGenqlSelection;
2613
2700
  on_Familiar?: FamiliarGenqlSelection;
2614
2701
  on_FamiliarModifier?: FamiliarModifierGenqlSelection;
2615
2702
  on_Monster?: MonsterGenqlSelection;
2616
2703
  on_Outfit?: OutfitGenqlSelection;
2617
2704
  on_FoldGroup?: FoldGroupGenqlSelection;
2618
2705
  on_ItemModifier?: ItemModifierGenqlSelection;
2706
+ on_EffectModifier?: EffectModifierGenqlSelection;
2707
+ on_Effect?: EffectGenqlSelection;
2619
2708
  on_Location?: LocationGenqlSelection;
2620
2709
  on_SkillModifier?: SkillModifierGenqlSelection;
2621
2710
  on_Skill?: SkillGenqlSelection;
@@ -2688,8 +2777,6 @@ export interface PathGenqlSelection {
2688
2777
  orderBy?: (ClassesOrderBy[] | null);
2689
2778
  /** A condition to be used in determining which values should be returned by the collection. */
2690
2779
  condition?: (ClassCondition | null);
2691
- /** A filter to be used in determining which values should be returned by the collection. */
2692
- filter?: (ClassFilter | null);
2693
2780
  };
2694
2781
  });
2695
2782
  __typename?: boolean | number;
@@ -2718,148 +2805,6 @@ export interface ClassCondition {
2718
2805
  /** Checks for equality with the object’s `spleenCapacity` field. */
2719
2806
  spleenCapacity?: (Scalars['Int'] | null);
2720
2807
  }
2721
- /** A filter to be used against `Class` object types. All fields are combined with a logical ‘and.’ */
2722
- export interface ClassFilter {
2723
- /** Filter by the object’s `id` field. */
2724
- id?: (IntFilter | null);
2725
- /** Filter by the object’s `name` field. */
2726
- name?: (StringFilter | null);
2727
- /** Filter by the object’s `enumName` field. */
2728
- enumName?: (StringFilter | null);
2729
- /** Filter by the object’s `image` field. */
2730
- image?: (StringFilter | null);
2731
- /** Filter by the object’s `primeStatIndex` field. */
2732
- primeStatIndex?: (IntFilter | null);
2733
- /** Filter by the object’s `path` field. */
2734
- path?: (IntFilter | null);
2735
- /** Filter by the object’s `stun` field. */
2736
- stun?: (StringFilter | null);
2737
- /** Filter by the object’s `stomachCapacity` field. */
2738
- stomachCapacity?: (IntFilter | null);
2739
- /** Filter by the object’s `liverCapacity` field. */
2740
- liverCapacity?: (IntFilter | null);
2741
- /** Filter by the object’s `spleenCapacity` field. */
2742
- spleenCapacity?: (IntFilter | null);
2743
- /** Filter by the object’s `pathByPath` relation. */
2744
- pathByPath?: (PathFilter | null);
2745
- /** A related `pathByPath` exists. */
2746
- pathByPathExists?: (Scalars['Boolean'] | null);
2747
- /** Checks for all expressions in this list. */
2748
- and?: (ClassFilter[] | null);
2749
- /** Checks for any expressions in this list. */
2750
- or?: (ClassFilter[] | null);
2751
- /** Negates the expression. */
2752
- not?: (ClassFilter | null);
2753
- }
2754
- /** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */
2755
- export interface IntFilter {
2756
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2757
- isNull?: (Scalars['Boolean'] | null);
2758
- /** Equal to the specified value. */
2759
- equalTo?: (Scalars['Int'] | null);
2760
- /** Not equal to the specified value. */
2761
- notEqualTo?: (Scalars['Int'] | null);
2762
- /** Included in the specified list. */
2763
- in?: (Scalars['Int'][] | null);
2764
- /** Not included in the specified list. */
2765
- notIn?: (Scalars['Int'][] | null);
2766
- /** Less than the specified value. */
2767
- lessThan?: (Scalars['Int'] | null);
2768
- /** Less than or equal to the specified value. */
2769
- lessThanOrEqualTo?: (Scalars['Int'] | null);
2770
- /** Greater than the specified value. */
2771
- greaterThan?: (Scalars['Int'] | null);
2772
- /** Greater than or equal to the specified value. */
2773
- greaterThanOrEqualTo?: (Scalars['Int'] | null);
2774
- }
2775
- /** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */
2776
- export interface StringFilter {
2777
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2778
- isNull?: (Scalars['Boolean'] | null);
2779
- /** Equal to the specified value. */
2780
- equalTo?: (Scalars['String'] | null);
2781
- /** Not equal to the specified value. */
2782
- notEqualTo?: (Scalars['String'] | null);
2783
- /** Included in the specified list. */
2784
- in?: (Scalars['String'][] | null);
2785
- /** Not included in the specified list. */
2786
- notIn?: (Scalars['String'][] | null);
2787
- /** Less than the specified value. */
2788
- lessThan?: (Scalars['String'] | null);
2789
- /** Less than or equal to the specified value. */
2790
- lessThanOrEqualTo?: (Scalars['String'] | null);
2791
- /** Greater than the specified value. */
2792
- greaterThan?: (Scalars['String'] | null);
2793
- /** Greater than or equal to the specified value. */
2794
- greaterThanOrEqualTo?: (Scalars['String'] | null);
2795
- }
2796
- /** A filter to be used against `Path` object types. All fields are combined with a logical ‘and.’ */
2797
- export interface PathFilter {
2798
- /** Filter by the object’s `id` field. */
2799
- id?: (IntFilter | null);
2800
- /** Filter by the object’s `name` field. */
2801
- name?: (StringFilter | null);
2802
- /** Filter by the object’s `enumName` field. */
2803
- enumName?: (StringFilter | null);
2804
- /** Filter by the object’s `image` field. */
2805
- image?: (StringFilter | null);
2806
- /** Filter by the object’s `isAvatar` field. */
2807
- isAvatar?: (BooleanFilter | null);
2808
- /** Filter by the object’s `article` field. */
2809
- article?: (StringFilter | null);
2810
- /** Filter by the object’s `pointsPreference` field. */
2811
- pointsPreference?: (StringFilter | null);
2812
- /** Filter by the object’s `maximumPoints` field. */
2813
- maximumPoints?: (IntFilter | null);
2814
- /** Filter by the object’s `bucket` field. */
2815
- bucket?: (BooleanFilter | null);
2816
- /** Filter by the object’s `stomachCapacity` field. */
2817
- stomachCapacity?: (IntFilter | null);
2818
- /** Filter by the object’s `liverCapacity` field. */
2819
- liverCapacity?: (IntFilter | null);
2820
- /** Filter by the object’s `spleenCapacity` field. */
2821
- spleenCapacity?: (IntFilter | null);
2822
- /** Filter by the object’s `classesByPath` relation. */
2823
- classesByPath?: (PathToManyClassFilter | null);
2824
- /** Some related `classesByPath` exist. */
2825
- classesByPathExist?: (Scalars['Boolean'] | null);
2826
- /** Checks for all expressions in this list. */
2827
- and?: (PathFilter[] | null);
2828
- /** Checks for any expressions in this list. */
2829
- or?: (PathFilter[] | null);
2830
- /** Negates the expression. */
2831
- not?: (PathFilter | null);
2832
- }
2833
- /** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */
2834
- export interface BooleanFilter {
2835
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2836
- isNull?: (Scalars['Boolean'] | null);
2837
- /** Equal to the specified value. */
2838
- equalTo?: (Scalars['Boolean'] | null);
2839
- /** Not equal to the specified value. */
2840
- notEqualTo?: (Scalars['Boolean'] | null);
2841
- /** Included in the specified list. */
2842
- in?: (Scalars['Boolean'][] | null);
2843
- /** Not included in the specified list. */
2844
- notIn?: (Scalars['Boolean'][] | null);
2845
- /** Less than the specified value. */
2846
- lessThan?: (Scalars['Boolean'] | null);
2847
- /** Less than or equal to the specified value. */
2848
- lessThanOrEqualTo?: (Scalars['Boolean'] | null);
2849
- /** Greater than the specified value. */
2850
- greaterThan?: (Scalars['Boolean'] | null);
2851
- /** Greater than or equal to the specified value. */
2852
- greaterThanOrEqualTo?: (Scalars['Boolean'] | null);
2853
- }
2854
- /** A filter to be used against many `Class` object types. All fields are combined with a logical ‘and.’ */
2855
- export interface PathToManyClassFilter {
2856
- /** Every related `Class` matches the filter criteria. All fields are combined with a logical ‘and.’ */
2857
- every?: (ClassFilter | null);
2858
- /** Some related `Class` matches the filter criteria. All fields are combined with a logical ‘and.’ */
2859
- some?: (ClassFilter | null);
2860
- /** No related `Class` matches the filter criteria. All fields are combined with a logical ‘and.’ */
2861
- none?: (ClassFilter | null);
2862
- }
2863
2808
  /** A `Class` edge in the connection. */
2864
2809
  export interface ClassesEdgeGenqlSelection {
2865
2810
  /** A cursor for use in pagination. */
@@ -2882,50 +2827,63 @@ export interface PageInfoGenqlSelection {
2882
2827
  __typename?: boolean | number;
2883
2828
  __scalar?: boolean | number;
2884
2829
  }
2885
- /** A connection to a list of `EffectModifier` values. */
2886
- export interface EffectModifiersConnectionGenqlSelection {
2887
- /** A list of `EffectModifier` objects. */
2888
- nodes?: EffectModifierGenqlSelection;
2889
- /** A list of edges which contains the `EffectModifier` and cursor to aid in pagination. */
2890
- edges?: EffectModifiersEdgeGenqlSelection;
2830
+ /** A connection to a list of `Consumable` values. */
2831
+ export interface ConsumablesConnectionGenqlSelection {
2832
+ /** A list of `Consumable` objects. */
2833
+ nodes?: ConsumableGenqlSelection;
2834
+ /** A list of edges which contains the `Consumable` and cursor to aid in pagination. */
2835
+ edges?: ConsumablesEdgeGenqlSelection;
2891
2836
  /** Information to aid in pagination. */
2892
2837
  pageInfo?: PageInfoGenqlSelection;
2893
- /** The count of *all* `EffectModifier` you could get from the connection. */
2838
+ /** The count of *all* `Consumable` you could get from the connection. */
2894
2839
  totalCount?: boolean | number;
2895
2840
  __typename?: boolean | number;
2896
2841
  __scalar?: boolean | number;
2897
2842
  }
2898
- export interface EffectModifierGenqlSelection {
2843
+ export interface ConsumableGenqlSelection {
2899
2844
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
2900
2845
  nodeId?: boolean | number;
2901
- effect?: boolean | number;
2902
- modifiers?: boolean | number;
2903
- /** Reads a single `Effect` that is related to this `EffectModifier`. */
2904
- effectByEffect?: EffectGenqlSelection;
2846
+ id?: boolean | number;
2847
+ stomach?: boolean | number;
2848
+ liver?: boolean | number;
2849
+ spleen?: boolean | number;
2850
+ levelRequirement?: boolean | number;
2851
+ quality?: boolean | number;
2852
+ adventureRange?: boolean | number;
2853
+ adventures?: boolean | number;
2854
+ muscle?: boolean | number;
2855
+ muscleRange?: boolean | number;
2856
+ mysticality?: boolean | number;
2857
+ mysticalityRange?: boolean | number;
2858
+ moxie?: boolean | number;
2859
+ moxieRange?: boolean | number;
2860
+ notes?: boolean | number;
2861
+ /** Reads a single `Item` that is related to this `Consumable`. */
2862
+ itemById?: ItemGenqlSelection;
2905
2863
  __typename?: boolean | number;
2906
2864
  __scalar?: boolean | number;
2907
2865
  }
2908
- export interface EffectGenqlSelection {
2866
+ export interface ItemGenqlSelection {
2909
2867
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
2910
2868
  nodeId?: boolean | number;
2911
2869
  id?: boolean | number;
2912
2870
  name?: boolean | number;
2913
2871
  descid?: boolean | number;
2914
2872
  image?: boolean | number;
2915
- quality?: boolean | number;
2916
- nohookah?: boolean | number;
2917
- nopvp?: boolean | number;
2918
- noremove?: boolean | number;
2919
- song?: boolean | number;
2920
- actions?: boolean | number;
2873
+ uses?: boolean | number;
2874
+ quest?: boolean | number;
2875
+ gift?: boolean | number;
2876
+ tradeable?: boolean | number;
2877
+ discardable?: boolean | number;
2878
+ autosell?: boolean | number;
2879
+ plural?: boolean | number;
2921
2880
  ambiguous?: boolean | number;
2922
- /** Reads a single `EffectModifier` that is related to this `Effect`. */
2923
- effectModifierByEffect?: EffectModifierGenqlSelection;
2924
- /**
2925
- * @deprecated Please use effectModifierByEffect instead
2926
- * Reads and enables pagination through a set of `EffectModifier`.
2927
- */
2928
- effectModifiersByEffect?: (EffectModifiersConnectionGenqlSelection & {
2881
+ /** Reads a single `Equipment` that is related to this `Item`. */
2882
+ equipmentById?: EquipmentGenqlSelection;
2883
+ /** Reads a single `Consumable` that is related to this `Item`. */
2884
+ consumableById?: ConsumableGenqlSelection;
2885
+ /** Reads and enables pagination through a set of `Familiar`. */
2886
+ familiarsByLarva?: (FamiliarsConnectionGenqlSelection & {
2929
2887
  __args?: {
2930
2888
  /** Only read the first `n` values of the set. */
2931
2889
  first?: (Scalars['Int'] | null);
@@ -2940,286 +2898,10 @@ export interface EffectGenqlSelection {
2940
2898
  before?: (Scalars['Cursor'] | null);
2941
2899
  /** Read all values in the set after (below) this cursor. */
2942
2900
  after?: (Scalars['Cursor'] | null);
2943
- /** The method to use when ordering `EffectModifier`. */
2944
- orderBy?: (EffectModifiersOrderBy[] | null);
2901
+ /** The method to use when ordering `Familiar`. */
2902
+ orderBy?: (FamiliarsOrderBy[] | null);
2945
2903
  /** A condition to be used in determining which values should be returned by the collection. */
2946
- condition?: (EffectModifierCondition | null);
2947
- /** A filter to be used in determining which values should be returned by the collection. */
2948
- filter?: (EffectModifierFilter | null);
2949
- };
2950
- });
2951
- __typename?: boolean | number;
2952
- __scalar?: boolean | number;
2953
- }
2954
- /**
2955
- * A condition to be used against `EffectModifier` object types. All fields are
2956
- * tested for equality and combined with a logical ‘and.’
2957
- */
2958
- export interface EffectModifierCondition {
2959
- /** Checks for equality with the object’s `effect` field. */
2960
- effect?: (Scalars['Int'] | null);
2961
- /** Checks for equality with the object’s `modifiers` field. */
2962
- modifiers?: (Scalars['JSON'] | null);
2963
- }
2964
- /** A filter to be used against `EffectModifier` object types. All fields are combined with a logical ‘and.’ */
2965
- export interface EffectModifierFilter {
2966
- /** Filter by the object’s `effect` field. */
2967
- effect?: (IntFilter | null);
2968
- /** Filter by the object’s `modifiers` field. */
2969
- modifiers?: (JSONFilter | null);
2970
- /** Filter by the object’s `effectByEffect` relation. */
2971
- effectByEffect?: (EffectFilter | null);
2972
- /** Checks for all expressions in this list. */
2973
- and?: (EffectModifierFilter[] | null);
2974
- /** Checks for any expressions in this list. */
2975
- or?: (EffectModifierFilter[] | null);
2976
- /** Negates the expression. */
2977
- not?: (EffectModifierFilter | null);
2978
- }
2979
- /** A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ */
2980
- export interface JSONFilter {
2981
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2982
- isNull?: (Scalars['Boolean'] | null);
2983
- /** Equal to the specified value. */
2984
- equalTo?: (Scalars['JSON'] | null);
2985
- /** Not equal to the specified value. */
2986
- notEqualTo?: (Scalars['JSON'] | null);
2987
- /** Included in the specified list. */
2988
- in?: (Scalars['JSON'][] | null);
2989
- /** Not included in the specified list. */
2990
- notIn?: (Scalars['JSON'][] | null);
2991
- /** Less than the specified value. */
2992
- lessThan?: (Scalars['JSON'] | null);
2993
- /** Less than or equal to the specified value. */
2994
- lessThanOrEqualTo?: (Scalars['JSON'] | null);
2995
- /** Greater than the specified value. */
2996
- greaterThan?: (Scalars['JSON'] | null);
2997
- /** Greater than or equal to the specified value. */
2998
- greaterThanOrEqualTo?: (Scalars['JSON'] | null);
2999
- }
3000
- /** A filter to be used against `Effect` object types. All fields are combined with a logical ‘and.’ */
3001
- export interface EffectFilter {
3002
- /** Filter by the object’s `id` field. */
3003
- id?: (IntFilter | null);
3004
- /** Filter by the object’s `name` field. */
3005
- name?: (StringFilter | null);
3006
- /** Filter by the object’s `descid` field. */
3007
- descid?: (StringFilter | null);
3008
- /** Filter by the object’s `image` field. */
3009
- image?: (StringFilter | null);
3010
- /** Filter by the object’s `quality` field. */
3011
- quality?: (EffectQualityFilter | null);
3012
- /** Filter by the object’s `nohookah` field. */
3013
- nohookah?: (BooleanFilter | null);
3014
- /** Filter by the object’s `nopvp` field. */
3015
- nopvp?: (BooleanFilter | null);
3016
- /** Filter by the object’s `noremove` field. */
3017
- noremove?: (BooleanFilter | null);
3018
- /** Filter by the object’s `song` field. */
3019
- song?: (BooleanFilter | null);
3020
- /** Filter by the object’s `actions` field. */
3021
- actions?: (StringListFilter | null);
3022
- /** Filter by the object’s `ambiguous` field. */
3023
- ambiguous?: (BooleanFilter | null);
3024
- /** Filter by the object’s `effectModifierByEffect` relation. */
3025
- effectModifierByEffect?: (EffectModifierFilter | null);
3026
- /** A related `effectModifierByEffect` exists. */
3027
- effectModifierByEffectExists?: (Scalars['Boolean'] | null);
3028
- /** Checks for all expressions in this list. */
3029
- and?: (EffectFilter[] | null);
3030
- /** Checks for any expressions in this list. */
3031
- or?: (EffectFilter[] | null);
3032
- /** Negates the expression. */
3033
- not?: (EffectFilter | null);
3034
- }
3035
- /** A filter to be used against EffectQuality fields. All fields are combined with a logical ‘and.’ */
3036
- export interface EffectQualityFilter {
3037
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
3038
- isNull?: (Scalars['Boolean'] | null);
3039
- /** Equal to the specified value. */
3040
- equalTo?: (EffectQuality | null);
3041
- /** Not equal to the specified value. */
3042
- notEqualTo?: (EffectQuality | null);
3043
- /** Included in the specified list. */
3044
- in?: (EffectQuality[] | null);
3045
- /** Not included in the specified list. */
3046
- notIn?: (EffectQuality[] | null);
3047
- /** Less than the specified value. */
3048
- lessThan?: (EffectQuality | null);
3049
- /** Less than or equal to the specified value. */
3050
- lessThanOrEqualTo?: (EffectQuality | null);
3051
- /** Greater than the specified value. */
3052
- greaterThan?: (EffectQuality | null);
3053
- /** Greater than or equal to the specified value. */
3054
- greaterThanOrEqualTo?: (EffectQuality | null);
3055
- }
3056
- /** A filter to be used against String List fields. All fields are combined with a logical ‘and.’ */
3057
- export interface StringListFilter {
3058
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
3059
- isNull?: (Scalars['Boolean'] | null);
3060
- /** Equal to the specified value. */
3061
- equalTo?: ((Scalars['String'] | null)[] | null);
3062
- /** Not equal to the specified value. */
3063
- notEqualTo?: ((Scalars['String'] | null)[] | null);
3064
- /** Less than the specified value. */
3065
- lessThan?: ((Scalars['String'] | null)[] | null);
3066
- /** Less than or equal to the specified value. */
3067
- lessThanOrEqualTo?: ((Scalars['String'] | null)[] | null);
3068
- /** Greater than the specified value. */
3069
- greaterThan?: ((Scalars['String'] | null)[] | null);
3070
- /** Greater than or equal to the specified value. */
3071
- greaterThanOrEqualTo?: ((Scalars['String'] | null)[] | null);
3072
- /** Any array item is equal to the specified value. */
3073
- anyEqualTo?: (Scalars['String'] | null);
3074
- /** Any array item is not equal to the specified value. */
3075
- anyNotEqualTo?: (Scalars['String'] | null);
3076
- }
3077
- /** A `EffectModifier` edge in the connection. */
3078
- export interface EffectModifiersEdgeGenqlSelection {
3079
- /** A cursor for use in pagination. */
3080
- cursor?: boolean | number;
3081
- /** The `EffectModifier` at the end of the edge. */
3082
- node?: EffectModifierGenqlSelection;
3083
- __typename?: boolean | number;
3084
- __scalar?: boolean | number;
3085
- }
3086
- /** A connection to a list of `Effect` values. */
3087
- export interface EffectsConnectionGenqlSelection {
3088
- /** A list of `Effect` objects. */
3089
- nodes?: EffectGenqlSelection;
3090
- /** A list of edges which contains the `Effect` and cursor to aid in pagination. */
3091
- edges?: EffectsEdgeGenqlSelection;
3092
- /** Information to aid in pagination. */
3093
- pageInfo?: PageInfoGenqlSelection;
3094
- /** The count of *all* `Effect` you could get from the connection. */
3095
- totalCount?: boolean | number;
3096
- __typename?: boolean | number;
3097
- __scalar?: boolean | number;
3098
- }
3099
- /** A `Effect` edge in the connection. */
3100
- export interface EffectsEdgeGenqlSelection {
3101
- /** A cursor for use in pagination. */
3102
- cursor?: boolean | number;
3103
- /** The `Effect` at the end of the edge. */
3104
- node?: EffectGenqlSelection;
3105
- __typename?: boolean | number;
3106
- __scalar?: boolean | number;
3107
- }
3108
- /** A condition to be used against `Effect` object types. All fields are tested for equality and combined with a logical ‘and.’ */
3109
- export interface EffectCondition {
3110
- /** Checks for equality with the object’s `id` field. */
3111
- id?: (Scalars['Int'] | null);
3112
- /** Checks for equality with the object’s `name` field. */
3113
- name?: (Scalars['String'] | null);
3114
- /** Checks for equality with the object’s `descid` field. */
3115
- descid?: (Scalars['String'] | null);
3116
- /** Checks for equality with the object’s `image` field. */
3117
- image?: (Scalars['String'] | null);
3118
- /** Checks for equality with the object’s `quality` field. */
3119
- quality?: (EffectQuality | null);
3120
- /** Checks for equality with the object’s `nohookah` field. */
3121
- nohookah?: (Scalars['Boolean'] | null);
3122
- /** Checks for equality with the object’s `nopvp` field. */
3123
- nopvp?: (Scalars['Boolean'] | null);
3124
- /** Checks for equality with the object’s `noremove` field. */
3125
- noremove?: (Scalars['Boolean'] | null);
3126
- /** Checks for equality with the object’s `song` field. */
3127
- song?: (Scalars['Boolean'] | null);
3128
- /** Checks for equality with the object’s `actions` field. */
3129
- actions?: ((Scalars['String'] | null)[] | null);
3130
- /** Checks for equality with the object’s `ambiguous` field. */
3131
- ambiguous?: (Scalars['Boolean'] | null);
3132
- }
3133
- /** A connection to a list of `Equipment` values. */
3134
- export interface EquipmentConnectionGenqlSelection {
3135
- /** A list of `Equipment` objects. */
3136
- nodes?: EquipmentGenqlSelection;
3137
- /** A list of edges which contains the `Equipment` and cursor to aid in pagination. */
3138
- edges?: EquipmentEdgeGenqlSelection;
3139
- /** Information to aid in pagination. */
3140
- pageInfo?: PageInfoGenqlSelection;
3141
- /** The count of *all* `Equipment` you could get from the connection. */
3142
- totalCount?: boolean | number;
3143
- __typename?: boolean | number;
3144
- __scalar?: boolean | number;
3145
- }
3146
- export interface EquipmentGenqlSelection {
3147
- /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
3148
- nodeId?: boolean | number;
3149
- id?: boolean | number;
3150
- item?: boolean | number;
3151
- power?: boolean | number;
3152
- musRequirement?: boolean | number;
3153
- mysRequirement?: boolean | number;
3154
- moxRequirement?: boolean | number;
3155
- type?: boolean | number;
3156
- hands?: boolean | number;
3157
- /** Reads a single `Item` that is related to this `Equipment`. */
3158
- itemByItem?: ItemGenqlSelection;
3159
- __typename?: boolean | number;
3160
- __scalar?: boolean | number;
3161
- }
3162
- export interface ItemGenqlSelection {
3163
- /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
3164
- nodeId?: boolean | number;
3165
- id?: boolean | number;
3166
- name?: boolean | number;
3167
- descid?: boolean | number;
3168
- image?: boolean | number;
3169
- uses?: boolean | number;
3170
- quest?: boolean | number;
3171
- gift?: boolean | number;
3172
- tradeable?: boolean | number;
3173
- discardable?: boolean | number;
3174
- autosell?: boolean | number;
3175
- plural?: boolean | number;
3176
- ambiguous?: boolean | number;
3177
- /** Reads and enables pagination through a set of `Equipment`. */
3178
- equipmentByItem?: (EquipmentConnectionGenqlSelection & {
3179
- __args?: {
3180
- /** Only read the first `n` values of the set. */
3181
- first?: (Scalars['Int'] | null);
3182
- /** Only read the last `n` values of the set. */
3183
- last?: (Scalars['Int'] | null);
3184
- /**
3185
- * Skip the first `n` values from our `after` cursor, an alternative to cursor
3186
- * based pagination. May not be used with `last`.
3187
- */
3188
- offset?: (Scalars['Int'] | null);
3189
- /** Read all values in the set before (above) this cursor. */
3190
- before?: (Scalars['Cursor'] | null);
3191
- /** Read all values in the set after (below) this cursor. */
3192
- after?: (Scalars['Cursor'] | null);
3193
- /** The method to use when ordering `Equipment`. */
3194
- orderBy?: (EquipmentOrderBy[] | null);
3195
- /** A condition to be used in determining which values should be returned by the collection. */
3196
- condition?: (EquipmentCondition | null);
3197
- /** A filter to be used in determining which values should be returned by the collection. */
3198
- filter?: (EquipmentFilter | null);
3199
- };
3200
- });
3201
- /** Reads and enables pagination through a set of `Familiar`. */
3202
- familiarsByLarva?: (FamiliarsConnectionGenqlSelection & {
3203
- __args?: {
3204
- /** Only read the first `n` values of the set. */
3205
- first?: (Scalars['Int'] | null);
3206
- /** Only read the last `n` values of the set. */
3207
- last?: (Scalars['Int'] | null);
3208
- /**
3209
- * Skip the first `n` values from our `after` cursor, an alternative to cursor
3210
- * based pagination. May not be used with `last`.
3211
- */
3212
- offset?: (Scalars['Int'] | null);
3213
- /** Read all values in the set before (above) this cursor. */
3214
- before?: (Scalars['Cursor'] | null);
3215
- /** Read all values in the set after (below) this cursor. */
3216
- after?: (Scalars['Cursor'] | null);
3217
- /** The method to use when ordering `Familiar`. */
3218
- orderBy?: (FamiliarsOrderBy[] | null);
3219
- /** A condition to be used in determining which values should be returned by the collection. */
3220
- condition?: (FamiliarCondition | null);
3221
- /** A filter to be used in determining which values should be returned by the collection. */
3222
- filter?: (FamiliarFilter | null);
2904
+ condition?: (FamiliarCondition | null);
3223
2905
  };
3224
2906
  });
3225
2907
  /** Reads and enables pagination through a set of `Familiar`. */
@@ -3242,8 +2924,6 @@ export interface ItemGenqlSelection {
3242
2924
  orderBy?: (FamiliarsOrderBy[] | null);
3243
2925
  /** A condition to be used in determining which values should be returned by the collection. */
3244
2926
  condition?: (FamiliarCondition | null);
3245
- /** A filter to be used in determining which values should be returned by the collection. */
3246
- filter?: (FamiliarFilter | null);
3247
2927
  };
3248
2928
  });
3249
2929
  /** Reads and enables pagination through a set of `MonsterDrop`. */
@@ -3266,8 +2946,6 @@ export interface ItemGenqlSelection {
3266
2946
  orderBy?: (MonsterDropsOrderBy[] | null);
3267
2947
  /** A condition to be used in determining which values should be returned by the collection. */
3268
2948
  condition?: (MonsterDropCondition | null);
3269
- /** A filter to be used in determining which values should be returned by the collection. */
3270
- filter?: (MonsterDropFilter | null);
3271
2949
  };
3272
2950
  });
3273
2951
  /** Reads and enables pagination through a set of `OutfitEquipment`. */
@@ -3290,8 +2968,6 @@ export interface ItemGenqlSelection {
3290
2968
  orderBy?: (OutfitEquipmentsOrderBy[] | null);
3291
2969
  /** A condition to be used in determining which values should be returned by the collection. */
3292
2970
  condition?: (OutfitEquipmentCondition | null);
3293
- /** A filter to be used in determining which values should be returned by the collection. */
3294
- filter?: (OutfitEquipmentFilter | null);
3295
2971
  };
3296
2972
  });
3297
2973
  /** Reads and enables pagination through a set of `OutfitTreat`. */
@@ -3314,8 +2990,6 @@ export interface ItemGenqlSelection {
3314
2990
  orderBy?: (OutfitTreatsOrderBy[] | null);
3315
2991
  /** A condition to be used in determining which values should be returned by the collection. */
3316
2992
  condition?: (OutfitTreatCondition | null);
3317
- /** A filter to be used in determining which values should be returned by the collection. */
3318
- filter?: (OutfitTreatFilter | null);
3319
2993
  };
3320
2994
  });
3321
2995
  /** Reads and enables pagination through a set of `Foldable`. */
@@ -3338,648 +3012,27 @@ export interface ItemGenqlSelection {
3338
3012
  orderBy?: (FoldablesOrderBy[] | null);
3339
3013
  /** A condition to be used in determining which values should be returned by the collection. */
3340
3014
  condition?: (FoldableCondition | null);
3341
- /** A filter to be used in determining which values should be returned by the collection. */
3342
- filter?: (FoldableFilter | null);
3343
3015
  };
3344
3016
  });
3345
3017
  /** Reads a single `ItemModifier` that is related to this `Item`. */
3346
3018
  itemModifierByItem?: ItemModifierGenqlSelection;
3347
- /**
3348
- * @deprecated Please use itemModifierByItem instead
3349
- * Reads and enables pagination through a set of `ItemModifier`.
3350
- */
3351
- itemModifiersByItem?: (ItemModifiersConnectionGenqlSelection & {
3352
- __args?: {
3353
- /** Only read the first `n` values of the set. */
3354
- first?: (Scalars['Int'] | null);
3355
- /** Only read the last `n` values of the set. */
3356
- last?: (Scalars['Int'] | null);
3357
- /**
3358
- * Skip the first `n` values from our `after` cursor, an alternative to cursor
3359
- * based pagination. May not be used with `last`.
3360
- */
3361
- offset?: (Scalars['Int'] | null);
3362
- /** Read all values in the set before (above) this cursor. */
3363
- before?: (Scalars['Cursor'] | null);
3364
- /** Read all values in the set after (below) this cursor. */
3365
- after?: (Scalars['Cursor'] | null);
3366
- /** The method to use when ordering `ItemModifier`. */
3367
- orderBy?: (ItemModifiersOrderBy[] | null);
3368
- /** A condition to be used in determining which values should be returned by the collection. */
3369
- condition?: (ItemModifierCondition | null);
3370
- /** A filter to be used in determining which values should be returned by the collection. */
3371
- filter?: (ItemModifierFilter | null);
3372
- };
3373
- });
3374
3019
  __typename?: boolean | number;
3375
3020
  __scalar?: boolean | number;
3376
3021
  }
3377
- /**
3378
- * A condition to be used against `Equipment` object types. All fields are tested
3379
- * for equality and combined with a logical ‘and.’
3380
- */
3381
- export interface EquipmentCondition {
3382
- /** Checks for equality with the object’s `id` field. */
3383
- id?: (Scalars['Int'] | null);
3384
- /** Checks for equality with the object’s `item` field. */
3385
- item?: (Scalars['Int'] | null);
3386
- /** Checks for equality with the object’s `power` field. */
3387
- power?: (Scalars['Int'] | null);
3388
- /** Checks for equality with the object’s `musRequirement` field. */
3389
- musRequirement?: (Scalars['Int'] | null);
3390
- /** Checks for equality with the object’s `mysRequirement` field. */
3391
- mysRequirement?: (Scalars['Int'] | null);
3392
- /** Checks for equality with the object’s `moxRequirement` field. */
3393
- moxRequirement?: (Scalars['Int'] | null);
3394
- /** Checks for equality with the object’s `type` field. */
3395
- type?: (Scalars['String'] | null);
3396
- /** Checks for equality with the object’s `hands` field. */
3397
- hands?: (Scalars['Int'] | null);
3398
- }
3399
- /** A filter to be used against `Equipment` object types. All fields are combined with a logical ‘and.’ */
3400
- export interface EquipmentFilter {
3401
- /** Filter by the object’s `id` field. */
3402
- id?: (IntFilter | null);
3403
- /** Filter by the object’s `item` field. */
3404
- item?: (IntFilter | null);
3405
- /** Filter by the object’s `power` field. */
3406
- power?: (IntFilter | null);
3407
- /** Filter by the object’s `musRequirement` field. */
3408
- musRequirement?: (IntFilter | null);
3409
- /** Filter by the object’s `mysRequirement` field. */
3410
- mysRequirement?: (IntFilter | null);
3411
- /** Filter by the object’s `moxRequirement` field. */
3412
- moxRequirement?: (IntFilter | null);
3413
- /** Filter by the object’s `type` field. */
3414
- type?: (StringFilter | null);
3415
- /** Filter by the object’s `hands` field. */
3416
- hands?: (IntFilter | null);
3417
- /** Filter by the object’s `itemByItem` relation. */
3418
- itemByItem?: (ItemFilter | null);
3419
- /** A related `itemByItem` exists. */
3420
- itemByItemExists?: (Scalars['Boolean'] | null);
3421
- /** Checks for all expressions in this list. */
3422
- and?: (EquipmentFilter[] | null);
3423
- /** Checks for any expressions in this list. */
3424
- or?: (EquipmentFilter[] | null);
3425
- /** Negates the expression. */
3426
- not?: (EquipmentFilter | null);
3427
- }
3428
- /** A filter to be used against `Item` object types. All fields are combined with a logical ‘and.’ */
3429
- export interface ItemFilter {
3430
- /** Filter by the object’s `id` field. */
3431
- id?: (IntFilter | null);
3432
- /** Filter by the object’s `name` field. */
3433
- name?: (StringFilter | null);
3434
- /** Filter by the object’s `descid` field. */
3435
- descid?: (StringFilter | null);
3436
- /** Filter by the object’s `image` field. */
3437
- image?: (StringFilter | null);
3438
- /** Filter by the object’s `uses` field. */
3439
- uses?: (ItemUseListFilter | null);
3440
- /** Filter by the object’s `quest` field. */
3441
- quest?: (BooleanFilter | null);
3442
- /** Filter by the object’s `gift` field. */
3443
- gift?: (BooleanFilter | null);
3444
- /** Filter by the object’s `tradeable` field. */
3445
- tradeable?: (BooleanFilter | null);
3446
- /** Filter by the object’s `discardable` field. */
3447
- discardable?: (BooleanFilter | null);
3448
- /** Filter by the object’s `autosell` field. */
3449
- autosell?: (IntFilter | null);
3450
- /** Filter by the object’s `plural` field. */
3451
- plural?: (StringFilter | null);
3452
- /** Filter by the object’s `ambiguous` field. */
3453
- ambiguous?: (BooleanFilter | null);
3454
- /** Filter by the object’s `equipmentByItem` relation. */
3455
- equipmentByItem?: (ItemToManyEquipmentFilter | null);
3456
- /** Some related `equipmentByItem` exist. */
3457
- equipmentByItemExist?: (Scalars['Boolean'] | null);
3458
- /** Filter by the object’s `familiarsByLarva` relation. */
3459
- familiarsByLarva?: (ItemToManyFamiliarFilter | null);
3460
- /** Some related `familiarsByLarva` exist. */
3461
- familiarsByLarvaExist?: (Scalars['Boolean'] | null);
3462
- /** Filter by the object’s `familiarsByEquipment` relation. */
3463
- familiarsByEquipment?: (ItemToManyFamiliarFilter | null);
3464
- /** Some related `familiarsByEquipment` exist. */
3465
- familiarsByEquipmentExist?: (Scalars['Boolean'] | null);
3466
- /** Filter by the object’s `monsterDropsByItem` relation. */
3467
- monsterDropsByItem?: (ItemToManyMonsterDropFilter | null);
3468
- /** Some related `monsterDropsByItem` exist. */
3469
- monsterDropsByItemExist?: (Scalars['Boolean'] | null);
3470
- /** Filter by the object’s `outfitEquipmentsByEquipment` relation. */
3471
- outfitEquipmentsByEquipment?: (ItemToManyOutfitEquipmentFilter | null);
3472
- /** Some related `outfitEquipmentsByEquipment` exist. */
3473
- outfitEquipmentsByEquipmentExist?: (Scalars['Boolean'] | null);
3474
- /** Filter by the object’s `outfitTreatsByItem` relation. */
3475
- outfitTreatsByItem?: (ItemToManyOutfitTreatFilter | null);
3476
- /** Some related `outfitTreatsByItem` exist. */
3477
- outfitTreatsByItemExist?: (Scalars['Boolean'] | null);
3478
- /** Filter by the object’s `foldablesByItem` relation. */
3479
- foldablesByItem?: (ItemToManyFoldableFilter | null);
3480
- /** Some related `foldablesByItem` exist. */
3481
- foldablesByItemExist?: (Scalars['Boolean'] | null);
3482
- /** Filter by the object’s `itemModifierByItem` relation. */
3483
- itemModifierByItem?: (ItemModifierFilter | null);
3484
- /** A related `itemModifierByItem` exists. */
3485
- itemModifierByItemExists?: (Scalars['Boolean'] | null);
3486
- /** Checks for all expressions in this list. */
3487
- and?: (ItemFilter[] | null);
3488
- /** Checks for any expressions in this list. */
3489
- or?: (ItemFilter[] | null);
3490
- /** Negates the expression. */
3491
- not?: (ItemFilter | null);
3492
- }
3493
- /** A filter to be used against ItemUse List fields. All fields are combined with a logical ‘and.’ */
3494
- export interface ItemUseListFilter {
3495
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
3496
- isNull?: (Scalars['Boolean'] | null);
3497
- /** Equal to the specified value. */
3498
- equalTo?: ((ItemUse | null)[] | null);
3499
- /** Not equal to the specified value. */
3500
- notEqualTo?: ((ItemUse | null)[] | null);
3501
- /** Less than the specified value. */
3502
- lessThan?: ((ItemUse | null)[] | null);
3503
- /** Less than or equal to the specified value. */
3504
- lessThanOrEqualTo?: ((ItemUse | null)[] | null);
3505
- /** Greater than the specified value. */
3506
- greaterThan?: ((ItemUse | null)[] | null);
3507
- /** Greater than or equal to the specified value. */
3508
- greaterThanOrEqualTo?: ((ItemUse | null)[] | null);
3509
- /** Any array item is equal to the specified value. */
3510
- anyEqualTo?: (ItemUse | null);
3511
- /** Any array item is not equal to the specified value. */
3512
- anyNotEqualTo?: (ItemUse | null);
3513
- }
3514
- /** A filter to be used against many `Equipment` object types. All fields are combined with a logical ‘and.’ */
3515
- export interface ItemToManyEquipmentFilter {
3516
- /** Every related `Equipment` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3517
- every?: (EquipmentFilter | null);
3518
- /** Some related `Equipment` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3519
- some?: (EquipmentFilter | null);
3520
- /** No related `Equipment` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3521
- none?: (EquipmentFilter | null);
3522
- }
3523
- /** A filter to be used against many `Familiar` object types. All fields are combined with a logical ‘and.’ */
3524
- export interface ItemToManyFamiliarFilter {
3525
- /** Every related `Familiar` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3526
- every?: (FamiliarFilter | null);
3527
- /** Some related `Familiar` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3528
- some?: (FamiliarFilter | null);
3529
- /** No related `Familiar` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3530
- none?: (FamiliarFilter | null);
3531
- }
3532
- /** A filter to be used against `Familiar` object types. All fields are combined with a logical ‘and.’ */
3533
- export interface FamiliarFilter {
3534
- /** Filter by the object’s `id` field. */
3535
- id?: (IntFilter | null);
3536
- /** Filter by the object’s `name` field. */
3537
- name?: (StringFilter | null);
3538
- /** Filter by the object’s `image` field. */
3539
- image?: (StringFilter | null);
3540
- /** Filter by the object’s `categories` field. */
3541
- categories?: (FamiliarCategoryListFilter | null);
3542
- /** Filter by the object’s `larva` field. */
3543
- larva?: (IntFilter | null);
3544
- /** Filter by the object’s `equipment` field. */
3545
- equipment?: (IntFilter | null);
3546
- /** Filter by the object’s `cageMatch` field. */
3547
- cageMatch?: (IntFilter | null);
3548
- /** Filter by the object’s `scavengerHunt` field. */
3549
- scavengerHunt?: (IntFilter | null);
3550
- /** Filter by the object’s `obstacleCourse` field. */
3551
- obstacleCourse?: (IntFilter | null);
3552
- /** Filter by the object’s `hideAndSeek` field. */
3553
- hideAndSeek?: (IntFilter | null);
3554
- /** Filter by the object’s `attributes` field. */
3555
- attributes?: (StringListFilter | null);
3556
- /** Filter by the object’s `familiarModifierByFamiliar` relation. */
3557
- familiarModifierByFamiliar?: (FamiliarModifierFilter | null);
3558
- /** A related `familiarModifierByFamiliar` exists. */
3559
- familiarModifierByFamiliarExists?: (Scalars['Boolean'] | null);
3560
- /** Filter by the object’s `itemByLarva` relation. */
3561
- itemByLarva?: (ItemFilter | null);
3562
- /** A related `itemByLarva` exists. */
3563
- itemByLarvaExists?: (Scalars['Boolean'] | null);
3564
- /** Filter by the object’s `itemByEquipment` relation. */
3565
- itemByEquipment?: (ItemFilter | null);
3566
- /** A related `itemByEquipment` exists. */
3567
- itemByEquipmentExists?: (Scalars['Boolean'] | null);
3568
- /** Checks for all expressions in this list. */
3569
- and?: (FamiliarFilter[] | null);
3570
- /** Checks for any expressions in this list. */
3571
- or?: (FamiliarFilter[] | null);
3572
- /** Negates the expression. */
3573
- not?: (FamiliarFilter | null);
3574
- }
3575
- /** A filter to be used against FamiliarCategory List fields. All fields are combined with a logical ‘and.’ */
3576
- export interface FamiliarCategoryListFilter {
3577
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
3578
- isNull?: (Scalars['Boolean'] | null);
3579
- /** Equal to the specified value. */
3580
- equalTo?: ((FamiliarCategory | null)[] | null);
3581
- /** Not equal to the specified value. */
3582
- notEqualTo?: ((FamiliarCategory | null)[] | null);
3583
- /** Less than the specified value. */
3584
- lessThan?: ((FamiliarCategory | null)[] | null);
3585
- /** Less than or equal to the specified value. */
3586
- lessThanOrEqualTo?: ((FamiliarCategory | null)[] | null);
3587
- /** Greater than the specified value. */
3588
- greaterThan?: ((FamiliarCategory | null)[] | null);
3589
- /** Greater than or equal to the specified value. */
3590
- greaterThanOrEqualTo?: ((FamiliarCategory | null)[] | null);
3591
- /** Any array item is equal to the specified value. */
3592
- anyEqualTo?: (FamiliarCategory | null);
3593
- /** Any array item is not equal to the specified value. */
3594
- anyNotEqualTo?: (FamiliarCategory | null);
3595
- }
3596
- /** A filter to be used against `FamiliarModifier` object types. All fields are combined with a logical ‘and.’ */
3597
- export interface FamiliarModifierFilter {
3598
- /** Filter by the object’s `familiar` field. */
3599
- familiar?: (IntFilter | null);
3600
- /** Filter by the object’s `modifiers` field. */
3601
- modifiers?: (JSONFilter | null);
3602
- /** Filter by the object’s `familiarByFamiliar` relation. */
3603
- familiarByFamiliar?: (FamiliarFilter | null);
3604
- /** Checks for all expressions in this list. */
3605
- and?: (FamiliarModifierFilter[] | null);
3606
- /** Checks for any expressions in this list. */
3607
- or?: (FamiliarModifierFilter[] | null);
3608
- /** Negates the expression. */
3609
- not?: (FamiliarModifierFilter | null);
3610
- }
3611
- /** A filter to be used against many `MonsterDrop` object types. All fields are combined with a logical ‘and.’ */
3612
- export interface ItemToManyMonsterDropFilter {
3613
- /** Every related `MonsterDrop` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3614
- every?: (MonsterDropFilter | null);
3615
- /** Some related `MonsterDrop` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3616
- some?: (MonsterDropFilter | null);
3617
- /** No related `MonsterDrop` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3618
- none?: (MonsterDropFilter | null);
3619
- }
3620
- /** A filter to be used against `MonsterDrop` object types. All fields are combined with a logical ‘and.’ */
3621
- export interface MonsterDropFilter {
3622
- /** Filter by the object’s `monster` field. */
3623
- monster?: (IntFilter | null);
3624
- /** Filter by the object’s `item` field. */
3625
- item?: (IntFilter | null);
3626
- /** Filter by the object’s `rate` field. */
3627
- rate?: (IntFilter | null);
3628
- /** Filter by the object’s `category` field. */
3629
- category?: (MonsterDropCategoryFilter | null);
3630
- /** Filter by the object’s `monsterByMonster` relation. */
3631
- monsterByMonster?: (MonsterFilter | null);
3632
- /** Filter by the object’s `itemByItem` relation. */
3633
- itemByItem?: (ItemFilter | null);
3634
- /** Checks for all expressions in this list. */
3635
- and?: (MonsterDropFilter[] | null);
3636
- /** Checks for any expressions in this list. */
3637
- or?: (MonsterDropFilter[] | null);
3638
- /** Negates the expression. */
3639
- not?: (MonsterDropFilter | null);
3640
- }
3641
- /** A filter to be used against MonsterDropCategory fields. All fields are combined with a logical ‘and.’ */
3642
- export interface MonsterDropCategoryFilter {
3643
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
3644
- isNull?: (Scalars['Boolean'] | null);
3645
- /** Equal to the specified value. */
3646
- equalTo?: (MonsterDropCategory | null);
3647
- /** Not equal to the specified value. */
3648
- notEqualTo?: (MonsterDropCategory | null);
3649
- /** Included in the specified list. */
3650
- in?: (MonsterDropCategory[] | null);
3651
- /** Not included in the specified list. */
3652
- notIn?: (MonsterDropCategory[] | null);
3653
- /** Less than the specified value. */
3654
- lessThan?: (MonsterDropCategory | null);
3655
- /** Less than or equal to the specified value. */
3656
- lessThanOrEqualTo?: (MonsterDropCategory | null);
3657
- /** Greater than the specified value. */
3658
- greaterThan?: (MonsterDropCategory | null);
3659
- /** Greater than or equal to the specified value. */
3660
- greaterThanOrEqualTo?: (MonsterDropCategory | null);
3661
- }
3662
- /** A filter to be used against `Monster` object types. All fields are combined with a logical ‘and.’ */
3663
- export interface MonsterFilter {
3664
- /** Filter by the object’s `ambiguous` field. */
3665
- ambiguous?: (BooleanFilter | null);
3666
- /** Filter by the object’s `article` field. */
3667
- article?: (StringFilter | null);
3668
- /** Filter by the object’s `attack` field. */
3669
- attack?: (StringFilter | null);
3670
- /** Filter by the object’s `boss` field. */
3671
- boss?: (BooleanFilter | null);
3672
- /** Filter by the object’s `defence` field. */
3673
- defence?: (StringFilter | null);
3674
- /** Filter by the object’s `drippy` field. */
3675
- drippy?: (BooleanFilter | null);
3676
- /** Filter by the object’s `element` field. */
3677
- element?: (MonsterElementFilter | null);
3678
- /** Filter by the object’s `elementalAttack` field. */
3679
- elementalAttack?: (MonsterElementFilter | null);
3680
- /** Filter by the object’s `elementalDefence` field. */
3681
- elementalDefence?: (MonsterElementFilter | null);
3682
- /** Filter by the object’s `elementalResistance` field. */
3683
- elementalResistance?: (StringFilter | null);
3684
- /** Filter by the object’s `experience` field. */
3685
- experience?: (StringFilter | null);
3686
- /** Filter by the object’s `free` field. */
3687
- free?: (BooleanFilter | null);
3688
- /** Filter by the object’s `ghost` field. */
3689
- ghost?: (BooleanFilter | null);
3690
- /** Filter by the object’s `groupSize` field. */
3691
- groupSize?: (IntFilter | null);
3692
- /** Filter by the object’s `hp` field. */
3693
- hp?: (StringFilter | null);
3694
- /** Filter by the object’s `id` field. */
3695
- id?: (IntFilter | null);
3696
- /** Filter by the object’s `image` field. */
3697
- image?: (StringListFilter | null);
3698
- /** Filter by the object’s `initiative` field. */
3699
- initiative?: (StringFilter | null);
3700
- /** Filter by the object’s `itemBlockChance` field. */
3701
- itemBlockChance?: (FloatFilter | null);
3702
- /** Filter by the object’s `lucky` field. */
3703
- lucky?: (BooleanFilter | null);
3704
- /** Filter by the object’s `manuel` field. */
3705
- manuel?: (StringFilter | null);
3706
- /** Filter by the object’s `meat` field. */
3707
- meat?: (StringFilter | null);
3708
- /** Filter by the object’s `monsterLevelMultiplier` field. */
3709
- monsterLevelMultiplier?: (StringFilter | null);
3710
- /** Filter by the object’s `name` field. */
3711
- name?: (StringFilter | null);
3712
- /** Filter by the object’s `nobanish` field. */
3713
- nobanish?: (BooleanFilter | null);
3714
- /** Filter by the object’s `nocopy` field. */
3715
- nocopy?: (BooleanFilter | null);
3716
- /** Filter by the object’s `nomanuel` field. */
3717
- nomanuel?: (BooleanFilter | null);
3718
- /** Filter by the object’s `nowander` field. */
3719
- nowander?: (BooleanFilter | null);
3720
- /** Filter by the object’s `nowish` field. */
3721
- nowish?: (BooleanFilter | null);
3722
- /** Filter by the object’s `phylum` field. */
3723
- phylum?: (StringFilter | null);
3724
- /** Filter by the object’s `physicalResistance` field. */
3725
- physicalResistance?: (StringFilter | null);
3726
- /** Filter by the object’s `poison` field. */
3727
- poison?: (StringFilter | null);
3728
- /** Filter by the object’s `scaling` field. */
3729
- scaling?: (StringFilter | null);
3730
- /** Filter by the object’s `scalingCap` field. */
3731
- scalingCap?: (StringFilter | null);
3732
- /** Filter by the object’s `scalingFloor` field. */
3733
- scalingFloor?: (StringFilter | null);
3734
- /** Filter by the object’s `skillBlockChance` field. */
3735
- skillBlockChance?: (FloatFilter | null);
3736
- /** Filter by the object’s `snake` field. */
3737
- snake?: (BooleanFilter | null);
3738
- /** Filter by the object’s `spellBlockChance` field. */
3739
- spellBlockChance?: (FloatFilter | null);
3740
- /** Filter by the object’s `sprinkles` field. */
3741
- sprinkles?: (StringListFilter | null);
3742
- /** Filter by the object’s `superlikely` field. */
3743
- superlikely?: (BooleanFilter | null);
3744
- /** Filter by the object’s `ultrarare` field. */
3745
- ultrarare?: (BooleanFilter | null);
3746
- /** Filter by the object’s `wanderer` field. */
3747
- wanderer?: (BooleanFilter | null);
3748
- /** Filter by the object’s `wiki` field. */
3749
- wiki?: (StringFilter | null);
3750
- /** Filter by the object’s `wish` field. */
3751
- wish?: (BooleanFilter | null);
3752
- /** Filter by the object’s `monsterDropsByMonster` relation. */
3753
- monsterDropsByMonster?: (MonsterToManyMonsterDropFilter | null);
3754
- /** Some related `monsterDropsByMonster` exist. */
3755
- monsterDropsByMonsterExist?: (Scalars['Boolean'] | null);
3756
- /** Checks for all expressions in this list. */
3757
- and?: (MonsterFilter[] | null);
3758
- /** Checks for any expressions in this list. */
3759
- or?: (MonsterFilter[] | null);
3760
- /** Negates the expression. */
3761
- not?: (MonsterFilter | null);
3762
- }
3763
- /** A filter to be used against MonsterElement fields. All fields are combined with a logical ‘and.’ */
3764
- export interface MonsterElementFilter {
3765
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
3766
- isNull?: (Scalars['Boolean'] | null);
3767
- /** Equal to the specified value. */
3768
- equalTo?: (MonsterElement | null);
3769
- /** Not equal to the specified value. */
3770
- notEqualTo?: (MonsterElement | null);
3771
- /** Included in the specified list. */
3772
- in?: (MonsterElement[] | null);
3773
- /** Not included in the specified list. */
3774
- notIn?: (MonsterElement[] | null);
3775
- /** Less than the specified value. */
3776
- lessThan?: (MonsterElement | null);
3777
- /** Less than or equal to the specified value. */
3778
- lessThanOrEqualTo?: (MonsterElement | null);
3779
- /** Greater than the specified value. */
3780
- greaterThan?: (MonsterElement | null);
3781
- /** Greater than or equal to the specified value. */
3782
- greaterThanOrEqualTo?: (MonsterElement | null);
3783
- }
3784
- /** A filter to be used against Float fields. All fields are combined with a logical ‘and.’ */
3785
- export interface FloatFilter {
3786
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
3787
- isNull?: (Scalars['Boolean'] | null);
3788
- /** Equal to the specified value. */
3789
- equalTo?: (Scalars['Float'] | null);
3790
- /** Not equal to the specified value. */
3791
- notEqualTo?: (Scalars['Float'] | null);
3792
- /** Included in the specified list. */
3793
- in?: (Scalars['Float'][] | null);
3794
- /** Not included in the specified list. */
3795
- notIn?: (Scalars['Float'][] | null);
3796
- /** Less than the specified value. */
3797
- lessThan?: (Scalars['Float'] | null);
3798
- /** Less than or equal to the specified value. */
3799
- lessThanOrEqualTo?: (Scalars['Float'] | null);
3800
- /** Greater than the specified value. */
3801
- greaterThan?: (Scalars['Float'] | null);
3802
- /** Greater than or equal to the specified value. */
3803
- greaterThanOrEqualTo?: (Scalars['Float'] | null);
3804
- }
3805
- /** A filter to be used against many `MonsterDrop` object types. All fields are combined with a logical ‘and.’ */
3806
- export interface MonsterToManyMonsterDropFilter {
3807
- /** Every related `MonsterDrop` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3808
- every?: (MonsterDropFilter | null);
3809
- /** Some related `MonsterDrop` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3810
- some?: (MonsterDropFilter | null);
3811
- /** No related `MonsterDrop` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3812
- none?: (MonsterDropFilter | null);
3813
- }
3814
- /** A filter to be used against many `OutfitEquipment` object types. All fields are combined with a logical ‘and.’ */
3815
- export interface ItemToManyOutfitEquipmentFilter {
3816
- /** Every related `OutfitEquipment` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3817
- every?: (OutfitEquipmentFilter | null);
3818
- /** Some related `OutfitEquipment` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3819
- some?: (OutfitEquipmentFilter | null);
3820
- /** No related `OutfitEquipment` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3821
- none?: (OutfitEquipmentFilter | null);
3822
- }
3823
- /** A filter to be used against `OutfitEquipment` object types. All fields are combined with a logical ‘and.’ */
3824
- export interface OutfitEquipmentFilter {
3825
- /** Filter by the object’s `outfit` field. */
3826
- outfit?: (IntFilter | null);
3827
- /** Filter by the object’s `equipment` field. */
3828
- equipment?: (IntFilter | null);
3829
- /** Filter by the object’s `outfitByOutfit` relation. */
3830
- outfitByOutfit?: (OutfitFilter | null);
3831
- /** Filter by the object’s `itemByEquipment` relation. */
3832
- itemByEquipment?: (ItemFilter | null);
3833
- /** Checks for all expressions in this list. */
3834
- and?: (OutfitEquipmentFilter[] | null);
3835
- /** Checks for any expressions in this list. */
3836
- or?: (OutfitEquipmentFilter[] | null);
3837
- /** Negates the expression. */
3838
- not?: (OutfitEquipmentFilter | null);
3839
- }
3840
- /** A filter to be used against `Outfit` object types. All fields are combined with a logical ‘and.’ */
3841
- export interface OutfitFilter {
3842
- /** Filter by the object’s `id` field. */
3843
- id?: (IntFilter | null);
3844
- /** Filter by the object’s `name` field. */
3845
- name?: (StringFilter | null);
3846
- /** Filter by the object’s `image` field. */
3847
- image?: (StringFilter | null);
3848
- /** Filter by the object’s `outfitEquipmentsByOutfit` relation. */
3849
- outfitEquipmentsByOutfit?: (OutfitToManyOutfitEquipmentFilter | null);
3850
- /** Some related `outfitEquipmentsByOutfit` exist. */
3851
- outfitEquipmentsByOutfitExist?: (Scalars['Boolean'] | null);
3852
- /** Filter by the object’s `outfitTreatsByOutfit` relation. */
3853
- outfitTreatsByOutfit?: (OutfitToManyOutfitTreatFilter | null);
3854
- /** Some related `outfitTreatsByOutfit` exist. */
3855
- outfitTreatsByOutfitExist?: (Scalars['Boolean'] | null);
3856
- /** Checks for all expressions in this list. */
3857
- and?: (OutfitFilter[] | null);
3858
- /** Checks for any expressions in this list. */
3859
- or?: (OutfitFilter[] | null);
3860
- /** Negates the expression. */
3861
- not?: (OutfitFilter | null);
3862
- }
3863
- /** A filter to be used against many `OutfitEquipment` object types. All fields are combined with a logical ‘and.’ */
3864
- export interface OutfitToManyOutfitEquipmentFilter {
3865
- /** Every related `OutfitEquipment` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3866
- every?: (OutfitEquipmentFilter | null);
3867
- /** Some related `OutfitEquipment` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3868
- some?: (OutfitEquipmentFilter | null);
3869
- /** No related `OutfitEquipment` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3870
- none?: (OutfitEquipmentFilter | null);
3871
- }
3872
- /** A filter to be used against many `OutfitTreat` object types. All fields are combined with a logical ‘and.’ */
3873
- export interface OutfitToManyOutfitTreatFilter {
3874
- /** Every related `OutfitTreat` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3875
- every?: (OutfitTreatFilter | null);
3876
- /** Some related `OutfitTreat` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3877
- some?: (OutfitTreatFilter | null);
3878
- /** No related `OutfitTreat` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3879
- none?: (OutfitTreatFilter | null);
3880
- }
3881
- /** A filter to be used against `OutfitTreat` object types. All fields are combined with a logical ‘and.’ */
3882
- export interface OutfitTreatFilter {
3883
- /** Filter by the object’s `outfit` field. */
3884
- outfit?: (IntFilter | null);
3885
- /** Filter by the object’s `item` field. */
3886
- item?: (IntFilter | null);
3887
- /** Filter by the object’s `chance` field. */
3888
- chance?: (FloatFilter | null);
3889
- /** Filter by the object’s `outfitByOutfit` relation. */
3890
- outfitByOutfit?: (OutfitFilter | null);
3891
- /** A related `outfitByOutfit` exists. */
3892
- outfitByOutfitExists?: (Scalars['Boolean'] | null);
3893
- /** Filter by the object’s `itemByItem` relation. */
3894
- itemByItem?: (ItemFilter | null);
3895
- /** A related `itemByItem` exists. */
3896
- itemByItemExists?: (Scalars['Boolean'] | null);
3897
- /** Checks for all expressions in this list. */
3898
- and?: (OutfitTreatFilter[] | null);
3899
- /** Checks for any expressions in this list. */
3900
- or?: (OutfitTreatFilter[] | null);
3901
- /** Negates the expression. */
3902
- not?: (OutfitTreatFilter | null);
3903
- }
3904
- /** A filter to be used against many `OutfitTreat` object types. All fields are combined with a logical ‘and.’ */
3905
- export interface ItemToManyOutfitTreatFilter {
3906
- /** Every related `OutfitTreat` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3907
- every?: (OutfitTreatFilter | null);
3908
- /** Some related `OutfitTreat` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3909
- some?: (OutfitTreatFilter | null);
3910
- /** No related `OutfitTreat` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3911
- none?: (OutfitTreatFilter | null);
3912
- }
3913
- /** A filter to be used against many `Foldable` object types. All fields are combined with a logical ‘and.’ */
3914
- export interface ItemToManyFoldableFilter {
3915
- /** Every related `Foldable` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3916
- every?: (FoldableFilter | null);
3917
- /** Some related `Foldable` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3918
- some?: (FoldableFilter | null);
3919
- /** No related `Foldable` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3920
- none?: (FoldableFilter | null);
3921
- }
3922
- /** A filter to be used against `Foldable` object types. All fields are combined with a logical ‘and.’ */
3923
- export interface FoldableFilter {
3924
- /** Filter by the object’s `foldGroup` field. */
3925
- foldGroup?: (IntFilter | null);
3926
- /** Filter by the object’s `item` field. */
3927
- item?: (IntFilter | null);
3928
- /** Filter by the object’s `foldGroupByFoldGroup` relation. */
3929
- foldGroupByFoldGroup?: (FoldGroupFilter | null);
3930
- /** A related `foldGroupByFoldGroup` exists. */
3931
- foldGroupByFoldGroupExists?: (Scalars['Boolean'] | null);
3932
- /** Filter by the object’s `itemByItem` relation. */
3933
- itemByItem?: (ItemFilter | null);
3934
- /** A related `itemByItem` exists. */
3935
- itemByItemExists?: (Scalars['Boolean'] | null);
3936
- /** Checks for all expressions in this list. */
3937
- and?: (FoldableFilter[] | null);
3938
- /** Checks for any expressions in this list. */
3939
- or?: (FoldableFilter[] | null);
3940
- /** Negates the expression. */
3941
- not?: (FoldableFilter | null);
3942
- }
3943
- /** A filter to be used against `FoldGroup` object types. All fields are combined with a logical ‘and.’ */
3944
- export interface FoldGroupFilter {
3945
- /** Filter by the object’s `id` field. */
3946
- id?: (IntFilter | null);
3947
- /** Filter by the object’s `damage` field. */
3948
- damage?: (IntFilter | null);
3949
- /** Filter by the object’s `foldablesByFoldGroup` relation. */
3950
- foldablesByFoldGroup?: (FoldGroupToManyFoldableFilter | null);
3951
- /** Some related `foldablesByFoldGroup` exist. */
3952
- foldablesByFoldGroupExist?: (Scalars['Boolean'] | null);
3953
- /** Checks for all expressions in this list. */
3954
- and?: (FoldGroupFilter[] | null);
3955
- /** Checks for any expressions in this list. */
3956
- or?: (FoldGroupFilter[] | null);
3957
- /** Negates the expression. */
3958
- not?: (FoldGroupFilter | null);
3959
- }
3960
- /** A filter to be used against many `Foldable` object types. All fields are combined with a logical ‘and.’ */
3961
- export interface FoldGroupToManyFoldableFilter {
3962
- /** Every related `Foldable` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3963
- every?: (FoldableFilter | null);
3964
- /** Some related `Foldable` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3965
- some?: (FoldableFilter | null);
3966
- /** No related `Foldable` matches the filter criteria. All fields are combined with a logical ‘and.’ */
3967
- none?: (FoldableFilter | null);
3968
- }
3969
- /** A filter to be used against `ItemModifier` object types. All fields are combined with a logical ‘and.’ */
3970
- export interface ItemModifierFilter {
3971
- /** Filter by the object’s `item` field. */
3972
- item?: (IntFilter | null);
3973
- /** Filter by the object’s `modifiers` field. */
3974
- modifiers?: (JSONFilter | null);
3975
- /** Filter by the object’s `itemByItem` relation. */
3976
- itemByItem?: (ItemFilter | null);
3977
- /** Checks for all expressions in this list. */
3978
- and?: (ItemModifierFilter[] | null);
3979
- /** Checks for any expressions in this list. */
3980
- or?: (ItemModifierFilter[] | null);
3981
- /** Negates the expression. */
3982
- not?: (ItemModifierFilter | null);
3022
+ export interface EquipmentGenqlSelection {
3023
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
3024
+ nodeId?: boolean | number;
3025
+ id?: boolean | number;
3026
+ power?: boolean | number;
3027
+ musRequirement?: boolean | number;
3028
+ mysRequirement?: boolean | number;
3029
+ moxRequirement?: boolean | number;
3030
+ type?: boolean | number;
3031
+ hands?: boolean | number;
3032
+ /** Reads a single `Item` that is related to this `Equipment`. */
3033
+ itemById?: ItemGenqlSelection;
3034
+ __typename?: boolean | number;
3035
+ __scalar?: boolean | number;
3983
3036
  }
3984
3037
  /** A connection to a list of `Familiar` values. */
3985
3038
  export interface FamiliarsConnectionGenqlSelection {
@@ -4014,33 +3067,6 @@ export interface FamiliarGenqlSelection {
4014
3067
  itemByEquipment?: ItemGenqlSelection;
4015
3068
  /** Reads a single `FamiliarModifier` that is related to this `Familiar`. */
4016
3069
  familiarModifierByFamiliar?: FamiliarModifierGenqlSelection;
4017
- /**
4018
- * @deprecated Please use familiarModifierByFamiliar instead
4019
- * Reads and enables pagination through a set of `FamiliarModifier`.
4020
- */
4021
- familiarModifiersByFamiliar?: (FamiliarModifiersConnectionGenqlSelection & {
4022
- __args?: {
4023
- /** Only read the first `n` values of the set. */
4024
- first?: (Scalars['Int'] | null);
4025
- /** Only read the last `n` values of the set. */
4026
- last?: (Scalars['Int'] | null);
4027
- /**
4028
- * Skip the first `n` values from our `after` cursor, an alternative to cursor
4029
- * based pagination. May not be used with `last`.
4030
- */
4031
- offset?: (Scalars['Int'] | null);
4032
- /** Read all values in the set before (above) this cursor. */
4033
- before?: (Scalars['Cursor'] | null);
4034
- /** Read all values in the set after (below) this cursor. */
4035
- after?: (Scalars['Cursor'] | null);
4036
- /** The method to use when ordering `FamiliarModifier`. */
4037
- orderBy?: (FamiliarModifiersOrderBy[] | null);
4038
- /** A condition to be used in determining which values should be returned by the collection. */
4039
- condition?: (FamiliarModifierCondition | null);
4040
- /** A filter to be used in determining which values should be returned by the collection. */
4041
- filter?: (FamiliarModifierFilter | null);
4042
- };
4043
- });
4044
3070
  __typename?: boolean | number;
4045
3071
  __scalar?: boolean | number;
4046
3072
  }
@@ -4054,38 +3080,6 @@ export interface FamiliarModifierGenqlSelection {
4054
3080
  __typename?: boolean | number;
4055
3081
  __scalar?: boolean | number;
4056
3082
  }
4057
- /** A connection to a list of `FamiliarModifier` values. */
4058
- export interface FamiliarModifiersConnectionGenqlSelection {
4059
- /** A list of `FamiliarModifier` objects. */
4060
- nodes?: FamiliarModifierGenqlSelection;
4061
- /** A list of edges which contains the `FamiliarModifier` and cursor to aid in pagination. */
4062
- edges?: FamiliarModifiersEdgeGenqlSelection;
4063
- /** Information to aid in pagination. */
4064
- pageInfo?: PageInfoGenqlSelection;
4065
- /** The count of *all* `FamiliarModifier` you could get from the connection. */
4066
- totalCount?: boolean | number;
4067
- __typename?: boolean | number;
4068
- __scalar?: boolean | number;
4069
- }
4070
- /** A `FamiliarModifier` edge in the connection. */
4071
- export interface FamiliarModifiersEdgeGenqlSelection {
4072
- /** A cursor for use in pagination. */
4073
- cursor?: boolean | number;
4074
- /** The `FamiliarModifier` at the end of the edge. */
4075
- node?: FamiliarModifierGenqlSelection;
4076
- __typename?: boolean | number;
4077
- __scalar?: boolean | number;
4078
- }
4079
- /**
4080
- * A condition to be used against `FamiliarModifier` object types. All fields are
4081
- * tested for equality and combined with a logical ‘and.’
4082
- */
4083
- export interface FamiliarModifierCondition {
4084
- /** Checks for equality with the object’s `familiar` field. */
4085
- familiar?: (Scalars['Int'] | null);
4086
- /** Checks for equality with the object’s `modifiers` field. */
4087
- modifiers?: (Scalars['JSON'] | null);
4088
- }
4089
3083
  /** A `Familiar` edge in the connection. */
4090
3084
  export interface FamiliarsEdgeGenqlSelection {
4091
3085
  /** A cursor for use in pagination. */
@@ -4173,6 +3167,7 @@ export interface MonsterGenqlSelection {
4173
3167
  lucky?: boolean | number;
4174
3168
  manuel?: boolean | number;
4175
3169
  meat?: boolean | number;
3170
+ meatExpression?: boolean | number;
4176
3171
  monsterLevelMultiplier?: boolean | number;
4177
3172
  name?: boolean | number;
4178
3173
  nobanish?: boolean | number;
@@ -4215,8 +3210,6 @@ export interface MonsterGenqlSelection {
4215
3210
  orderBy?: (MonsterDropsOrderBy[] | null);
4216
3211
  /** A condition to be used in determining which values should be returned by the collection. */
4217
3212
  condition?: (MonsterDropCondition | null);
4218
- /** A filter to be used in determining which values should be returned by the collection. */
4219
- filter?: (MonsterDropFilter | null);
4220
3213
  };
4221
3214
  });
4222
3215
  __typename?: boolean | number;
@@ -4294,8 +3287,6 @@ export interface OutfitGenqlSelection {
4294
3287
  orderBy?: (OutfitEquipmentsOrderBy[] | null);
4295
3288
  /** A condition to be used in determining which values should be returned by the collection. */
4296
3289
  condition?: (OutfitEquipmentCondition | null);
4297
- /** A filter to be used in determining which values should be returned by the collection. */
4298
- filter?: (OutfitEquipmentFilter | null);
4299
3290
  };
4300
3291
  });
4301
3292
  /** Reads and enables pagination through a set of `OutfitTreat`. */
@@ -4318,8 +3309,6 @@ export interface OutfitGenqlSelection {
4318
3309
  orderBy?: (OutfitTreatsOrderBy[] | null);
4319
3310
  /** A condition to be used in determining which values should be returned by the collection. */
4320
3311
  condition?: (OutfitTreatCondition | null);
4321
- /** A filter to be used in determining which values should be returned by the collection. */
4322
- filter?: (OutfitTreatFilter | null);
4323
3312
  };
4324
3313
  });
4325
3314
  __typename?: boolean | number;
@@ -4437,8 +3426,6 @@ export interface FoldGroupGenqlSelection {
4437
3426
  orderBy?: (FoldablesOrderBy[] | null);
4438
3427
  /** A condition to be used in determining which values should be returned by the collection. */
4439
3428
  condition?: (FoldableCondition | null);
4440
- /** A filter to be used in determining which values should be returned by the collection. */
4441
- filter?: (FoldableFilter | null);
4442
3429
  };
4443
3430
  });
4444
3431
  __typename?: boolean | number;
@@ -4473,48 +3460,234 @@ export interface ItemModifierGenqlSelection {
4473
3460
  __typename?: boolean | number;
4474
3461
  __scalar?: boolean | number;
4475
3462
  }
4476
- /** A connection to a list of `ItemModifier` values. */
4477
- export interface ItemModifiersConnectionGenqlSelection {
4478
- /** A list of `ItemModifier` objects. */
4479
- nodes?: ItemModifierGenqlSelection;
4480
- /** A list of edges which contains the `ItemModifier` and cursor to aid in pagination. */
4481
- edges?: ItemModifiersEdgeGenqlSelection;
4482
- /** Information to aid in pagination. */
4483
- pageInfo?: PageInfoGenqlSelection;
4484
- /** The count of *all* `ItemModifier` you could get from the connection. */
4485
- totalCount?: boolean | number;
4486
- __typename?: boolean | number;
4487
- __scalar?: boolean | number;
4488
- }
4489
- /** A `ItemModifier` edge in the connection. */
4490
- export interface ItemModifiersEdgeGenqlSelection {
3463
+ /** A `Consumable` edge in the connection. */
3464
+ export interface ConsumablesEdgeGenqlSelection {
4491
3465
  /** A cursor for use in pagination. */
4492
3466
  cursor?: boolean | number;
4493
- /** The `ItemModifier` at the end of the edge. */
4494
- node?: ItemModifierGenqlSelection;
3467
+ /** The `Consumable` at the end of the edge. */
3468
+ node?: ConsumableGenqlSelection;
4495
3469
  __typename?: boolean | number;
4496
3470
  __scalar?: boolean | number;
4497
3471
  }
4498
3472
  /**
4499
- * A condition to be used against `ItemModifier` object types. All fields are
4500
- * tested for equality and combined with a logical ‘and.’
3473
+ * A condition to be used against `Consumable` object types. All fields are tested
3474
+ * for equality and combined with a logical ‘and.’
4501
3475
  */
4502
- export interface ItemModifierCondition {
4503
- /** Checks for equality with the object’s `item` field. */
4504
- item?: (Scalars['Int'] | null);
4505
- /** Checks for equality with the object’s `modifiers` field. */
4506
- modifiers?: (Scalars['JSON'] | null);
3476
+ export interface ConsumableCondition {
3477
+ /** Checks for equality with the object’s `id` field. */
3478
+ id?: (Scalars['Int'] | null);
3479
+ /** Checks for equality with the object’s `stomach` field. */
3480
+ stomach?: (Scalars['Int'] | null);
3481
+ /** Checks for equality with the object’s `liver` field. */
3482
+ liver?: (Scalars['Int'] | null);
3483
+ /** Checks for equality with the object’s `spleen` field. */
3484
+ spleen?: (Scalars['Int'] | null);
3485
+ /** Checks for equality with the object’s `levelRequirement` field. */
3486
+ levelRequirement?: (Scalars['Int'] | null);
3487
+ /** Checks for equality with the object’s `quality` field. */
3488
+ quality?: (ConsumableQuality | null);
3489
+ /** Checks for equality with the object’s `adventureRange` field. */
3490
+ adventureRange?: (Scalars['String'] | null);
3491
+ /** Checks for equality with the object’s `adventures` field. */
3492
+ adventures?: (Scalars['Float'] | null);
3493
+ /** Checks for equality with the object’s `muscle` field. */
3494
+ muscle?: (Scalars['Float'] | null);
3495
+ /** Checks for equality with the object’s `muscleRange` field. */
3496
+ muscleRange?: (Scalars['String'] | null);
3497
+ /** Checks for equality with the object’s `mysticality` field. */
3498
+ mysticality?: (Scalars['Float'] | null);
3499
+ /** Checks for equality with the object’s `mysticalityRange` field. */
3500
+ mysticalityRange?: (Scalars['String'] | null);
3501
+ /** Checks for equality with the object’s `moxie` field. */
3502
+ moxie?: (Scalars['Float'] | null);
3503
+ /** Checks for equality with the object’s `moxieRange` field. */
3504
+ moxieRange?: (Scalars['String'] | null);
3505
+ /** Checks for equality with the object’s `notes` field. */
3506
+ notes?: (Scalars['String'] | null);
4507
3507
  }
4508
- /** A `Equipment` edge in the connection. */
4509
- export interface EquipmentEdgeGenqlSelection {
4510
- /** A cursor for use in pagination. */
4511
- cursor?: boolean | number;
4512
- /** The `Equipment` at the end of the edge. */
4513
- node?: EquipmentGenqlSelection;
3508
+ /** A connection to a list of `EffectModifier` values. */
3509
+ export interface EffectModifiersConnectionGenqlSelection {
3510
+ /** A list of `EffectModifier` objects. */
3511
+ nodes?: EffectModifierGenqlSelection;
3512
+ /** A list of edges which contains the `EffectModifier` and cursor to aid in pagination. */
3513
+ edges?: EffectModifiersEdgeGenqlSelection;
3514
+ /** Information to aid in pagination. */
3515
+ pageInfo?: PageInfoGenqlSelection;
3516
+ /** The count of *all* `EffectModifier` you could get from the connection. */
3517
+ totalCount?: boolean | number;
4514
3518
  __typename?: boolean | number;
4515
3519
  __scalar?: boolean | number;
4516
3520
  }
4517
- /** A connection to a list of `FoldGroup` values. */
3521
+ export interface EffectModifierGenqlSelection {
3522
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
3523
+ nodeId?: boolean | number;
3524
+ effect?: boolean | number;
3525
+ modifiers?: boolean | number;
3526
+ /** Reads a single `Effect` that is related to this `EffectModifier`. */
3527
+ effectByEffect?: EffectGenqlSelection;
3528
+ __typename?: boolean | number;
3529
+ __scalar?: boolean | number;
3530
+ }
3531
+ export interface EffectGenqlSelection {
3532
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
3533
+ nodeId?: boolean | number;
3534
+ id?: boolean | number;
3535
+ name?: boolean | number;
3536
+ descid?: boolean | number;
3537
+ image?: boolean | number;
3538
+ quality?: boolean | number;
3539
+ nohookah?: boolean | number;
3540
+ nopvp?: boolean | number;
3541
+ noremove?: boolean | number;
3542
+ song?: boolean | number;
3543
+ actions?: boolean | number;
3544
+ ambiguous?: boolean | number;
3545
+ /** Reads a single `EffectModifier` that is related to this `Effect`. */
3546
+ effectModifierByEffect?: EffectModifierGenqlSelection;
3547
+ __typename?: boolean | number;
3548
+ __scalar?: boolean | number;
3549
+ }
3550
+ /** A `EffectModifier` edge in the connection. */
3551
+ export interface EffectModifiersEdgeGenqlSelection {
3552
+ /** A cursor for use in pagination. */
3553
+ cursor?: boolean | number;
3554
+ /** The `EffectModifier` at the end of the edge. */
3555
+ node?: EffectModifierGenqlSelection;
3556
+ __typename?: boolean | number;
3557
+ __scalar?: boolean | number;
3558
+ }
3559
+ /**
3560
+ * A condition to be used against `EffectModifier` object types. All fields are
3561
+ * tested for equality and combined with a logical ‘and.’
3562
+ */
3563
+ export interface EffectModifierCondition {
3564
+ /** Checks for equality with the object’s `effect` field. */
3565
+ effect?: (Scalars['Int'] | null);
3566
+ /** Checks for equality with the object’s `modifiers` field. */
3567
+ modifiers?: (Scalars['JSON'] | null);
3568
+ }
3569
+ /** A connection to a list of `Effect` values. */
3570
+ export interface EffectsConnectionGenqlSelection {
3571
+ /** A list of `Effect` objects. */
3572
+ nodes?: EffectGenqlSelection;
3573
+ /** A list of edges which contains the `Effect` and cursor to aid in pagination. */
3574
+ edges?: EffectsEdgeGenqlSelection;
3575
+ /** Information to aid in pagination. */
3576
+ pageInfo?: PageInfoGenqlSelection;
3577
+ /** The count of *all* `Effect` you could get from the connection. */
3578
+ totalCount?: boolean | number;
3579
+ __typename?: boolean | number;
3580
+ __scalar?: boolean | number;
3581
+ }
3582
+ /** A `Effect` edge in the connection. */
3583
+ export interface EffectsEdgeGenqlSelection {
3584
+ /** A cursor for use in pagination. */
3585
+ cursor?: boolean | number;
3586
+ /** The `Effect` at the end of the edge. */
3587
+ node?: EffectGenqlSelection;
3588
+ __typename?: boolean | number;
3589
+ __scalar?: boolean | number;
3590
+ }
3591
+ /** A condition to be used against `Effect` object types. All fields are tested for equality and combined with a logical ‘and.’ */
3592
+ export interface EffectCondition {
3593
+ /** Checks for equality with the object’s `id` field. */
3594
+ id?: (Scalars['Int'] | null);
3595
+ /** Checks for equality with the object’s `name` field. */
3596
+ name?: (Scalars['String'] | null);
3597
+ /** Checks for equality with the object’s `descid` field. */
3598
+ descid?: (Scalars['String'] | null);
3599
+ /** Checks for equality with the object’s `image` field. */
3600
+ image?: (Scalars['String'] | null);
3601
+ /** Checks for equality with the object’s `quality` field. */
3602
+ quality?: (EffectQuality | null);
3603
+ /** Checks for equality with the object’s `nohookah` field. */
3604
+ nohookah?: (Scalars['Boolean'] | null);
3605
+ /** Checks for equality with the object’s `nopvp` field. */
3606
+ nopvp?: (Scalars['Boolean'] | null);
3607
+ /** Checks for equality with the object’s `noremove` field. */
3608
+ noremove?: (Scalars['Boolean'] | null);
3609
+ /** Checks for equality with the object’s `song` field. */
3610
+ song?: (Scalars['Boolean'] | null);
3611
+ /** Checks for equality with the object’s `actions` field. */
3612
+ actions?: ((Scalars['String'] | null)[] | null);
3613
+ /** Checks for equality with the object’s `ambiguous` field. */
3614
+ ambiguous?: (Scalars['Boolean'] | null);
3615
+ }
3616
+ /** A connection to a list of `Equipment` values. */
3617
+ export interface EquipmentConnectionGenqlSelection {
3618
+ /** A list of `Equipment` objects. */
3619
+ nodes?: EquipmentGenqlSelection;
3620
+ /** A list of edges which contains the `Equipment` and cursor to aid in pagination. */
3621
+ edges?: EquipmentEdgeGenqlSelection;
3622
+ /** Information to aid in pagination. */
3623
+ pageInfo?: PageInfoGenqlSelection;
3624
+ /** The count of *all* `Equipment` you could get from the connection. */
3625
+ totalCount?: boolean | number;
3626
+ __typename?: boolean | number;
3627
+ __scalar?: boolean | number;
3628
+ }
3629
+ /** A `Equipment` edge in the connection. */
3630
+ export interface EquipmentEdgeGenqlSelection {
3631
+ /** A cursor for use in pagination. */
3632
+ cursor?: boolean | number;
3633
+ /** The `Equipment` at the end of the edge. */
3634
+ node?: EquipmentGenqlSelection;
3635
+ __typename?: boolean | number;
3636
+ __scalar?: boolean | number;
3637
+ }
3638
+ /**
3639
+ * A condition to be used against `Equipment` object types. All fields are tested
3640
+ * for equality and combined with a logical ‘and.’
3641
+ */
3642
+ export interface EquipmentCondition {
3643
+ /** Checks for equality with the object’s `id` field. */
3644
+ id?: (Scalars['Int'] | null);
3645
+ /** Checks for equality with the object’s `power` field. */
3646
+ power?: (Scalars['Int'] | null);
3647
+ /** Checks for equality with the object’s `musRequirement` field. */
3648
+ musRequirement?: (Scalars['Int'] | null);
3649
+ /** Checks for equality with the object’s `mysRequirement` field. */
3650
+ mysRequirement?: (Scalars['Int'] | null);
3651
+ /** Checks for equality with the object’s `moxRequirement` field. */
3652
+ moxRequirement?: (Scalars['Int'] | null);
3653
+ /** Checks for equality with the object’s `type` field. */
3654
+ type?: (Scalars['String'] | null);
3655
+ /** Checks for equality with the object’s `hands` field. */
3656
+ hands?: (Scalars['Int'] | null);
3657
+ }
3658
+ /** A connection to a list of `FamiliarModifier` values. */
3659
+ export interface FamiliarModifiersConnectionGenqlSelection {
3660
+ /** A list of `FamiliarModifier` objects. */
3661
+ nodes?: FamiliarModifierGenqlSelection;
3662
+ /** A list of edges which contains the `FamiliarModifier` and cursor to aid in pagination. */
3663
+ edges?: FamiliarModifiersEdgeGenqlSelection;
3664
+ /** Information to aid in pagination. */
3665
+ pageInfo?: PageInfoGenqlSelection;
3666
+ /** The count of *all* `FamiliarModifier` you could get from the connection. */
3667
+ totalCount?: boolean | number;
3668
+ __typename?: boolean | number;
3669
+ __scalar?: boolean | number;
3670
+ }
3671
+ /** A `FamiliarModifier` edge in the connection. */
3672
+ export interface FamiliarModifiersEdgeGenqlSelection {
3673
+ /** A cursor for use in pagination. */
3674
+ cursor?: boolean | number;
3675
+ /** The `FamiliarModifier` at the end of the edge. */
3676
+ node?: FamiliarModifierGenqlSelection;
3677
+ __typename?: boolean | number;
3678
+ __scalar?: boolean | number;
3679
+ }
3680
+ /**
3681
+ * A condition to be used against `FamiliarModifier` object types. All fields are
3682
+ * tested for equality and combined with a logical ‘and.’
3683
+ */
3684
+ export interface FamiliarModifierCondition {
3685
+ /** Checks for equality with the object’s `familiar` field. */
3686
+ familiar?: (Scalars['Int'] | null);
3687
+ /** Checks for equality with the object’s `modifiers` field. */
3688
+ modifiers?: (Scalars['JSON'] | null);
3689
+ }
3690
+ /** A connection to a list of `FoldGroup` values. */
4518
3691
  export interface FoldGroupsConnectionGenqlSelection {
4519
3692
  /** A list of `FoldGroup` objects. */
4520
3693
  nodes?: FoldGroupGenqlSelection;
@@ -4546,6 +3719,38 @@ export interface FoldGroupCondition {
4546
3719
  /** Checks for equality with the object’s `damage` field. */
4547
3720
  damage?: (Scalars['Int'] | null);
4548
3721
  }
3722
+ /** A connection to a list of `ItemModifier` values. */
3723
+ export interface ItemModifiersConnectionGenqlSelection {
3724
+ /** A list of `ItemModifier` objects. */
3725
+ nodes?: ItemModifierGenqlSelection;
3726
+ /** A list of edges which contains the `ItemModifier` and cursor to aid in pagination. */
3727
+ edges?: ItemModifiersEdgeGenqlSelection;
3728
+ /** Information to aid in pagination. */
3729
+ pageInfo?: PageInfoGenqlSelection;
3730
+ /** The count of *all* `ItemModifier` you could get from the connection. */
3731
+ totalCount?: boolean | number;
3732
+ __typename?: boolean | number;
3733
+ __scalar?: boolean | number;
3734
+ }
3735
+ /** A `ItemModifier` edge in the connection. */
3736
+ export interface ItemModifiersEdgeGenqlSelection {
3737
+ /** A cursor for use in pagination. */
3738
+ cursor?: boolean | number;
3739
+ /** The `ItemModifier` at the end of the edge. */
3740
+ node?: ItemModifierGenqlSelection;
3741
+ __typename?: boolean | number;
3742
+ __scalar?: boolean | number;
3743
+ }
3744
+ /**
3745
+ * A condition to be used against `ItemModifier` object types. All fields are
3746
+ * tested for equality and combined with a logical ‘and.’
3747
+ */
3748
+ export interface ItemModifierCondition {
3749
+ /** Checks for equality with the object’s `item` field. */
3750
+ item?: (Scalars['Int'] | null);
3751
+ /** Checks for equality with the object’s `modifiers` field. */
3752
+ modifiers?: (Scalars['JSON'] | null);
3753
+ }
4549
3754
  /** A connection to a list of `Item` values. */
4550
3755
  export interface ItemsConnectionGenqlSelection {
4551
3756
  /** A list of `Item` objects. */
@@ -4659,77 +3864,6 @@ export interface LocationCondition {
4659
3864
  /** Checks for equality with the object’s `nowander` field. */
4660
3865
  nowander?: (Scalars['Boolean'] | null);
4661
3866
  }
4662
- /** A filter to be used against `Location` object types. All fields are combined with a logical ‘and.’ */
4663
- export interface LocationFilter {
4664
- /** Filter by the object’s `id` field. */
4665
- id?: (IntFilter | null);
4666
- /** Filter by the object’s `name` field. */
4667
- name?: (StringFilter | null);
4668
- /** Filter by the object’s `zone` field. */
4669
- zone?: (StringFilter | null);
4670
- /** Filter by the object’s `url` field. */
4671
- url?: (StringFilter | null);
4672
- /** Filter by the object’s `difficulty` field. */
4673
- difficulty?: (LocationDifficultyFilter | null);
4674
- /** Filter by the object’s `environment` field. */
4675
- environment?: (LocationEnvironmentFilter | null);
4676
- /** Filter by the object’s `statRequirement` field. */
4677
- statRequirement?: (IntFilter | null);
4678
- /** Filter by the object’s `waterLevel` field. */
4679
- waterLevel?: (IntFilter | null);
4680
- /** Filter by the object’s `overdrunk` field. */
4681
- overdrunk?: (BooleanFilter | null);
4682
- /** Filter by the object’s `nowander` field. */
4683
- nowander?: (BooleanFilter | null);
4684
- /** Checks for all expressions in this list. */
4685
- and?: (LocationFilter[] | null);
4686
- /** Checks for any expressions in this list. */
4687
- or?: (LocationFilter[] | null);
4688
- /** Negates the expression. */
4689
- not?: (LocationFilter | null);
4690
- }
4691
- /** A filter to be used against LocationDifficulty fields. All fields are combined with a logical ‘and.’ */
4692
- export interface LocationDifficultyFilter {
4693
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
4694
- isNull?: (Scalars['Boolean'] | null);
4695
- /** Equal to the specified value. */
4696
- equalTo?: (LocationDifficulty | null);
4697
- /** Not equal to the specified value. */
4698
- notEqualTo?: (LocationDifficulty | null);
4699
- /** Included in the specified list. */
4700
- in?: (LocationDifficulty[] | null);
4701
- /** Not included in the specified list. */
4702
- notIn?: (LocationDifficulty[] | null);
4703
- /** Less than the specified value. */
4704
- lessThan?: (LocationDifficulty | null);
4705
- /** Less than or equal to the specified value. */
4706
- lessThanOrEqualTo?: (LocationDifficulty | null);
4707
- /** Greater than the specified value. */
4708
- greaterThan?: (LocationDifficulty | null);
4709
- /** Greater than or equal to the specified value. */
4710
- greaterThanOrEqualTo?: (LocationDifficulty | null);
4711
- }
4712
- /** A filter to be used against LocationEnvironment fields. All fields are combined with a logical ‘and.’ */
4713
- export interface LocationEnvironmentFilter {
4714
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
4715
- isNull?: (Scalars['Boolean'] | null);
4716
- /** Equal to the specified value. */
4717
- equalTo?: (LocationEnvironment | null);
4718
- /** Not equal to the specified value. */
4719
- notEqualTo?: (LocationEnvironment | null);
4720
- /** Included in the specified list. */
4721
- in?: (LocationEnvironment[] | null);
4722
- /** Not included in the specified list. */
4723
- notIn?: (LocationEnvironment[] | null);
4724
- /** Less than the specified value. */
4725
- lessThan?: (LocationEnvironment | null);
4726
- /** Less than or equal to the specified value. */
4727
- lessThanOrEqualTo?: (LocationEnvironment | null);
4728
- /** Greater than the specified value. */
4729
- greaterThan?: (LocationEnvironment | null);
4730
- /** Greater than or equal to the specified value. */
4731
- greaterThanOrEqualTo?: (LocationEnvironment | null);
4732
- }
4733
3867
  /** A connection to a list of `Meta` values. */
4734
3868
  export interface MetasConnectionGenqlSelection {
4735
3869
  /** A list of `Meta` objects. */
@@ -4762,38 +3896,6 @@ export interface MetaCondition {
4762
3896
  /** Checks for equality with the object’s `lastUpdate` field. */
4763
3897
  lastUpdate?: (Scalars['Datetime'] | null);
4764
3898
  }
4765
- /** A filter to be used against `Meta` object types. All fields are combined with a logical ‘and.’ */
4766
- export interface MetaFilter {
4767
- /** Filter by the object’s `lastUpdate` field. */
4768
- lastUpdate?: (DatetimeFilter | null);
4769
- /** Checks for all expressions in this list. */
4770
- and?: (MetaFilter[] | null);
4771
- /** Checks for any expressions in this list. */
4772
- or?: (MetaFilter[] | null);
4773
- /** Negates the expression. */
4774
- not?: (MetaFilter | null);
4775
- }
4776
- /** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */
4777
- export interface DatetimeFilter {
4778
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
4779
- isNull?: (Scalars['Boolean'] | null);
4780
- /** Equal to the specified value. */
4781
- equalTo?: (Scalars['Datetime'] | null);
4782
- /** Not equal to the specified value. */
4783
- notEqualTo?: (Scalars['Datetime'] | null);
4784
- /** Included in the specified list. */
4785
- in?: (Scalars['Datetime'][] | null);
4786
- /** Not included in the specified list. */
4787
- notIn?: (Scalars['Datetime'][] | null);
4788
- /** Less than the specified value. */
4789
- lessThan?: (Scalars['Datetime'] | null);
4790
- /** Less than or equal to the specified value. */
4791
- lessThanOrEqualTo?: (Scalars['Datetime'] | null);
4792
- /** Greater than the specified value. */
4793
- greaterThan?: (Scalars['Datetime'] | null);
4794
- /** Greater than or equal to the specified value. */
4795
- greaterThanOrEqualTo?: (Scalars['Datetime'] | null);
4796
- }
4797
3899
  /** A connection to a list of `Monster` values. */
4798
3900
  export interface MonstersConnectionGenqlSelection {
4799
3901
  /** A list of `Monster` objects. */
@@ -4861,7 +3963,9 @@ export interface MonsterCondition {
4861
3963
  /** Checks for equality with the object’s `manuel` field. */
4862
3964
  manuel?: (Scalars['String'] | null);
4863
3965
  /** Checks for equality with the object’s `meat` field. */
4864
- meat?: (Scalars['String'] | null);
3966
+ meat?: (Scalars['Float'] | null);
3967
+ /** Checks for equality with the object’s `meatExpression` field. */
3968
+ meatExpression?: (Scalars['String'] | null);
4865
3969
  /** Checks for equality with the object’s `monsterLevelMultiplier` field. */
4866
3970
  monsterLevelMultiplier?: (Scalars['String'] | null);
4867
3971
  /** Checks for equality with the object’s `name` field. */
@@ -5025,33 +4129,15 @@ export interface SkillGenqlSelection {
5025
4129
  ambiguous?: boolean | number;
5026
4130
  /** Reads a single `SkillModifier` that is related to this `Skill`. */
5027
4131
  skillModifierBySkill?: SkillModifierGenqlSelection;
5028
- /**
5029
- * @deprecated Please use skillModifierBySkill instead
5030
- * Reads and enables pagination through a set of `SkillModifier`.
5031
- */
5032
- skillModifiersBySkill?: (SkillModifiersConnectionGenqlSelection & {
5033
- __args?: {
5034
- /** Only read the first `n` values of the set. */
5035
- first?: (Scalars['Int'] | null);
5036
- /** Only read the last `n` values of the set. */
5037
- last?: (Scalars['Int'] | null);
5038
- /**
5039
- * Skip the first `n` values from our `after` cursor, an alternative to cursor
5040
- * based pagination. May not be used with `last`.
5041
- */
5042
- offset?: (Scalars['Int'] | null);
5043
- /** Read all values in the set before (above) this cursor. */
5044
- before?: (Scalars['Cursor'] | null);
5045
- /** Read all values in the set after (below) this cursor. */
5046
- after?: (Scalars['Cursor'] | null);
5047
- /** The method to use when ordering `SkillModifier`. */
5048
- orderBy?: (SkillModifiersOrderBy[] | null);
5049
- /** A condition to be used in determining which values should be returned by the collection. */
5050
- condition?: (SkillModifierCondition | null);
5051
- /** A filter to be used in determining which values should be returned by the collection. */
5052
- filter?: (SkillModifierFilter | null);
5053
- };
5054
- });
4132
+ __typename?: boolean | number;
4133
+ __scalar?: boolean | number;
4134
+ }
4135
+ /** A `SkillModifier` edge in the connection. */
4136
+ export interface SkillModifiersEdgeGenqlSelection {
4137
+ /** A cursor for use in pagination. */
4138
+ cursor?: boolean | number;
4139
+ /** The `SkillModifier` at the end of the edge. */
4140
+ node?: SkillModifierGenqlSelection;
5055
4141
  __typename?: boolean | number;
5056
4142
  __scalar?: boolean | number;
5057
4143
  }
@@ -5065,84 +4151,6 @@ export interface SkillModifierCondition {
5065
4151
  /** Checks for equality with the object’s `modifiers` field. */
5066
4152
  modifiers?: (Scalars['JSON'] | null);
5067
4153
  }
5068
- /** A filter to be used against `SkillModifier` object types. All fields are combined with a logical ‘and.’ */
5069
- export interface SkillModifierFilter {
5070
- /** Filter by the object’s `skill` field. */
5071
- skill?: (IntFilter | null);
5072
- /** Filter by the object’s `modifiers` field. */
5073
- modifiers?: (JSONFilter | null);
5074
- /** Filter by the object’s `skillBySkill` relation. */
5075
- skillBySkill?: (SkillFilter | null);
5076
- /** Checks for all expressions in this list. */
5077
- and?: (SkillModifierFilter[] | null);
5078
- /** Checks for any expressions in this list. */
5079
- or?: (SkillModifierFilter[] | null);
5080
- /** Negates the expression. */
5081
- not?: (SkillModifierFilter | null);
5082
- }
5083
- /** A filter to be used against `Skill` object types. All fields are combined with a logical ‘and.’ */
5084
- export interface SkillFilter {
5085
- /** Filter by the object’s `id` field. */
5086
- id?: (IntFilter | null);
5087
- /** Filter by the object’s `name` field. */
5088
- name?: (StringFilter | null);
5089
- /** Filter by the object’s `image` field. */
5090
- image?: (StringFilter | null);
5091
- /** Filter by the object’s `tags` field. */
5092
- tags?: (SkillTagListFilter | null);
5093
- /** Filter by the object’s `mpCost` field. */
5094
- mpCost?: (IntFilter | null);
5095
- /** Filter by the object’s `duration` field. */
5096
- duration?: (IntFilter | null);
5097
- /** Filter by the object’s `guildLevel` field. */
5098
- guildLevel?: (IntFilter | null);
5099
- /** Filter by the object’s `maxLevel` field. */
5100
- maxLevel?: (IntFilter | null);
5101
- /** Filter by the object’s `permable` field. */
5102
- permable?: (BooleanFilter | null);
5103
- /** Filter by the object’s `ambiguous` field. */
5104
- ambiguous?: (BooleanFilter | null);
5105
- /** Filter by the object’s `skillModifierBySkill` relation. */
5106
- skillModifierBySkill?: (SkillModifierFilter | null);
5107
- /** A related `skillModifierBySkill` exists. */
5108
- skillModifierBySkillExists?: (Scalars['Boolean'] | null);
5109
- /** Checks for all expressions in this list. */
5110
- and?: (SkillFilter[] | null);
5111
- /** Checks for any expressions in this list. */
5112
- or?: (SkillFilter[] | null);
5113
- /** Negates the expression. */
5114
- not?: (SkillFilter | null);
5115
- }
5116
- /** A filter to be used against SkillTag List fields. All fields are combined with a logical ‘and.’ */
5117
- export interface SkillTagListFilter {
5118
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
5119
- isNull?: (Scalars['Boolean'] | null);
5120
- /** Equal to the specified value. */
5121
- equalTo?: ((SkillTag | null)[] | null);
5122
- /** Not equal to the specified value. */
5123
- notEqualTo?: ((SkillTag | null)[] | null);
5124
- /** Less than the specified value. */
5125
- lessThan?: ((SkillTag | null)[] | null);
5126
- /** Less than or equal to the specified value. */
5127
- lessThanOrEqualTo?: ((SkillTag | null)[] | null);
5128
- /** Greater than the specified value. */
5129
- greaterThan?: ((SkillTag | null)[] | null);
5130
- /** Greater than or equal to the specified value. */
5131
- greaterThanOrEqualTo?: ((SkillTag | null)[] | null);
5132
- /** Any array item is equal to the specified value. */
5133
- anyEqualTo?: (SkillTag | null);
5134
- /** Any array item is not equal to the specified value. */
5135
- anyNotEqualTo?: (SkillTag | null);
5136
- }
5137
- /** A `SkillModifier` edge in the connection. */
5138
- export interface SkillModifiersEdgeGenqlSelection {
5139
- /** A cursor for use in pagination. */
5140
- cursor?: boolean | number;
5141
- /** The `SkillModifier` at the end of the edge. */
5142
- node?: SkillModifierGenqlSelection;
5143
- __typename?: boolean | number;
5144
- __scalar?: boolean | number;
5145
- }
5146
4154
  /** A connection to a list of `Skill` values. */
5147
4155
  export interface SkillsConnectionGenqlSelection {
5148
4156
  /** A list of `Skill` objects. */
@@ -5197,6 +4205,13 @@ export interface MutationGenqlSelection {
5197
4205
  input: CreateClassInput;
5198
4206
  };
5199
4207
  });
4208
+ /** Creates a single `Consumable`. */
4209
+ createConsumable?: (CreateConsumablePayloadGenqlSelection & {
4210
+ __args: {
4211
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4212
+ input: CreateConsumableInput;
4213
+ };
4214
+ });
5200
4215
  /** Creates a single `EffectModifier`. */
5201
4216
  createEffectModifier?: (CreateEffectModifierPayloadGenqlSelection & {
5202
4217
  __args: {
@@ -5344,21 +4359,35 @@ export interface MutationGenqlSelection {
5344
4359
  input: UpdateClassByIdInput;
5345
4360
  };
5346
4361
  });
5347
- /** Updates a single `EffectModifier` using its globally unique id and a patch. */
5348
- updateEffectModifier?: (UpdateEffectModifierPayloadGenqlSelection & {
4362
+ /** Updates a single `Consumable` using its globally unique id and a patch. */
4363
+ updateConsumable?: (UpdateConsumablePayloadGenqlSelection & {
5349
4364
  __args: {
5350
4365
  /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
5351
- input: UpdateEffectModifierInput;
4366
+ input: UpdateConsumableInput;
5352
4367
  };
5353
4368
  });
5354
- /** Updates a single `EffectModifier` using a unique key and a patch. */
5355
- updateEffectModifierByEffect?: (UpdateEffectModifierPayloadGenqlSelection & {
4369
+ /** Updates a single `Consumable` using a unique key and a patch. */
4370
+ updateConsumableById?: (UpdateConsumablePayloadGenqlSelection & {
5356
4371
  __args: {
5357
4372
  /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
5358
- input: UpdateEffectModifierByEffectInput;
4373
+ input: UpdateConsumableByIdInput;
5359
4374
  };
5360
4375
  });
5361
- /** Updates a single `Effect` using its globally unique id and a patch. */
4376
+ /** Updates a single `EffectModifier` using its globally unique id and a patch. */
4377
+ updateEffectModifier?: (UpdateEffectModifierPayloadGenqlSelection & {
4378
+ __args: {
4379
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4380
+ input: UpdateEffectModifierInput;
4381
+ };
4382
+ });
4383
+ /** Updates a single `EffectModifier` using a unique key and a patch. */
4384
+ updateEffectModifierByEffect?: (UpdateEffectModifierPayloadGenqlSelection & {
4385
+ __args: {
4386
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4387
+ input: UpdateEffectModifierByEffectInput;
4388
+ };
4389
+ });
4390
+ /** Updates a single `Effect` using its globally unique id and a patch. */
5362
4391
  updateEffect?: (UpdateEffectPayloadGenqlSelection & {
5363
4392
  __args: {
5364
4393
  /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
@@ -5575,6 +4604,20 @@ export interface MutationGenqlSelection {
5575
4604
  input: DeleteClassByIdInput;
5576
4605
  };
5577
4606
  });
4607
+ /** Deletes a single `Consumable` using its globally unique id. */
4608
+ deleteConsumable?: (DeleteConsumablePayloadGenqlSelection & {
4609
+ __args: {
4610
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4611
+ input: DeleteConsumableInput;
4612
+ };
4613
+ });
4614
+ /** Deletes a single `Consumable` using a unique key. */
4615
+ deleteConsumableById?: (DeleteConsumablePayloadGenqlSelection & {
4616
+ __args: {
4617
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4618
+ input: DeleteConsumableByIdInput;
4619
+ };
4620
+ });
5578
4621
  /** Deletes a single `EffectModifier` using its globally unique id. */
5579
4622
  deleteEffectModifier?: (DeleteEffectModifierPayloadGenqlSelection & {
5580
4623
  __args: {
@@ -5841,6 +4884,57 @@ export interface ClassInput {
5841
4884
  liverCapacity?: (Scalars['Int'] | null);
5842
4885
  spleenCapacity?: (Scalars['Int'] | null);
5843
4886
  }
4887
+ /** The output of our create `Consumable` mutation. */
4888
+ export interface CreateConsumablePayloadGenqlSelection {
4889
+ /**
4890
+ * The exact same `clientMutationId` that was provided in the mutation input,
4891
+ * unchanged and unused. May be used by a client to track mutations.
4892
+ */
4893
+ clientMutationId?: boolean | number;
4894
+ /** The `Consumable` that was created by this mutation. */
4895
+ consumable?: ConsumableGenqlSelection;
4896
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
4897
+ query?: QueryGenqlSelection;
4898
+ /** Reads a single `Item` that is related to this `Consumable`. */
4899
+ itemById?: ItemGenqlSelection;
4900
+ /** An edge for our `Consumable`. May be used by Relay 1. */
4901
+ consumableEdge?: (ConsumablesEdgeGenqlSelection & {
4902
+ __args?: {
4903
+ /** The method to use when ordering `Consumable`. */
4904
+ orderBy?: (ConsumablesOrderBy[] | null);
4905
+ };
4906
+ });
4907
+ __typename?: boolean | number;
4908
+ __scalar?: boolean | number;
4909
+ }
4910
+ /** All input for the create `Consumable` mutation. */
4911
+ export interface CreateConsumableInput {
4912
+ /**
4913
+ * An arbitrary string value with no semantic meaning. Will be included in the
4914
+ * payload verbatim. May be used to track mutations by the client.
4915
+ */
4916
+ clientMutationId?: (Scalars['String'] | null);
4917
+ /** The `Consumable` to be created by this mutation. */
4918
+ consumable: ConsumableInput;
4919
+ }
4920
+ /** An input for mutations affecting `Consumable` */
4921
+ export interface ConsumableInput {
4922
+ id: Scalars['Int'];
4923
+ stomach: Scalars['Int'];
4924
+ liver: Scalars['Int'];
4925
+ spleen: Scalars['Int'];
4926
+ levelRequirement: Scalars['Int'];
4927
+ quality?: (ConsumableQuality | null);
4928
+ adventureRange: Scalars['String'];
4929
+ adventures: Scalars['Float'];
4930
+ muscle: Scalars['Float'];
4931
+ muscleRange: Scalars['String'];
4932
+ mysticality: Scalars['Float'];
4933
+ mysticalityRange: Scalars['String'];
4934
+ moxie: Scalars['Float'];
4935
+ moxieRange: Scalars['String'];
4936
+ notes?: (Scalars['String'] | null);
4937
+ }
5844
4938
  /** The output of our create `EffectModifier` mutation. */
5845
4939
  export interface CreateEffectModifierPayloadGenqlSelection {
5846
4940
  /**
@@ -5936,7 +5030,7 @@ export interface CreateEquipmentPayloadGenqlSelection {
5936
5030
  /** Our root query field type. Allows us to run any query from our mutation payload. */
5937
5031
  query?: QueryGenqlSelection;
5938
5032
  /** Reads a single `Item` that is related to this `Equipment`. */
5939
- itemByItem?: ItemGenqlSelection;
5033
+ itemById?: ItemGenqlSelection;
5940
5034
  /** An edge for our `Equipment`. May be used by Relay 1. */
5941
5035
  equipmentEdge?: (EquipmentEdgeGenqlSelection & {
5942
5036
  __args?: {
@@ -5960,7 +5054,6 @@ export interface CreateEquipmentInput {
5960
5054
  /** An input for mutations affecting `Equipment` */
5961
5055
  export interface EquipmentInput {
5962
5056
  id: Scalars['Int'];
5963
- item?: (Scalars['Int'] | null);
5964
5057
  power: Scalars['Int'];
5965
5058
  musRequirement: Scalars['Int'];
5966
5059
  mysRequirement: Scalars['Int'];
@@ -6390,7 +5483,8 @@ export interface MonsterInput {
6390
5483
  itemBlockChance: Scalars['Float'];
6391
5484
  lucky: Scalars['Boolean'];
6392
5485
  manuel?: (Scalars['String'] | null);
6393
- meat: Scalars['String'];
5486
+ meat?: (Scalars['Float'] | null);
5487
+ meatExpression?: (Scalars['String'] | null);
6394
5488
  monsterLevelMultiplier: Scalars['String'];
6395
5489
  name: Scalars['String'];
6396
5490
  nobanish: Scalars['Boolean'];
@@ -6719,6 +5813,70 @@ export interface UpdateClassByIdInput {
6719
5813
  classPatch: ClassPatch;
6720
5814
  id: Scalars['Int'];
6721
5815
  }
5816
+ /** The output of our update `Consumable` mutation. */
5817
+ export interface UpdateConsumablePayloadGenqlSelection {
5818
+ /**
5819
+ * The exact same `clientMutationId` that was provided in the mutation input,
5820
+ * unchanged and unused. May be used by a client to track mutations.
5821
+ */
5822
+ clientMutationId?: boolean | number;
5823
+ /** The `Consumable` that was updated by this mutation. */
5824
+ consumable?: ConsumableGenqlSelection;
5825
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
5826
+ query?: QueryGenqlSelection;
5827
+ /** Reads a single `Item` that is related to this `Consumable`. */
5828
+ itemById?: ItemGenqlSelection;
5829
+ /** An edge for our `Consumable`. May be used by Relay 1. */
5830
+ consumableEdge?: (ConsumablesEdgeGenqlSelection & {
5831
+ __args?: {
5832
+ /** The method to use when ordering `Consumable`. */
5833
+ orderBy?: (ConsumablesOrderBy[] | null);
5834
+ };
5835
+ });
5836
+ __typename?: boolean | number;
5837
+ __scalar?: boolean | number;
5838
+ }
5839
+ /** All input for the `updateConsumable` mutation. */
5840
+ export interface UpdateConsumableInput {
5841
+ /**
5842
+ * An arbitrary string value with no semantic meaning. Will be included in the
5843
+ * payload verbatim. May be used to track mutations by the client.
5844
+ */
5845
+ clientMutationId?: (Scalars['String'] | null);
5846
+ /** The globally unique `ID` which will identify a single `Consumable` to be updated. */
5847
+ nodeId: Scalars['ID'];
5848
+ /** An object where the defined keys will be set on the `Consumable` being updated. */
5849
+ consumablePatch: ConsumablePatch;
5850
+ }
5851
+ /** Represents an update to a `Consumable`. Fields that are set will be updated. */
5852
+ export interface ConsumablePatch {
5853
+ id?: (Scalars['Int'] | null);
5854
+ stomach?: (Scalars['Int'] | null);
5855
+ liver?: (Scalars['Int'] | null);
5856
+ spleen?: (Scalars['Int'] | null);
5857
+ levelRequirement?: (Scalars['Int'] | null);
5858
+ quality?: (ConsumableQuality | null);
5859
+ adventureRange?: (Scalars['String'] | null);
5860
+ adventures?: (Scalars['Float'] | null);
5861
+ muscle?: (Scalars['Float'] | null);
5862
+ muscleRange?: (Scalars['String'] | null);
5863
+ mysticality?: (Scalars['Float'] | null);
5864
+ mysticalityRange?: (Scalars['String'] | null);
5865
+ moxie?: (Scalars['Float'] | null);
5866
+ moxieRange?: (Scalars['String'] | null);
5867
+ notes?: (Scalars['String'] | null);
5868
+ }
5869
+ /** All input for the `updateConsumableById` mutation. */
5870
+ export interface UpdateConsumableByIdInput {
5871
+ /**
5872
+ * An arbitrary string value with no semantic meaning. Will be included in the
5873
+ * payload verbatim. May be used to track mutations by the client.
5874
+ */
5875
+ clientMutationId?: (Scalars['String'] | null);
5876
+ /** An object where the defined keys will be set on the `Consumable` being updated. */
5877
+ consumablePatch: ConsumablePatch;
5878
+ id: Scalars['Int'];
5879
+ }
6722
5880
  /** The output of our update `EffectModifier` mutation. */
6723
5881
  export interface UpdateEffectModifierPayloadGenqlSelection {
6724
5882
  /**
@@ -6851,7 +6009,7 @@ export interface UpdateEquipmentPayloadGenqlSelection {
6851
6009
  /** Our root query field type. Allows us to run any query from our mutation payload. */
6852
6010
  query?: QueryGenqlSelection;
6853
6011
  /** Reads a single `Item` that is related to this `Equipment`. */
6854
- itemByItem?: ItemGenqlSelection;
6012
+ itemById?: ItemGenqlSelection;
6855
6013
  /** An edge for our `Equipment`. May be used by Relay 1. */
6856
6014
  equipmentEdge?: (EquipmentEdgeGenqlSelection & {
6857
6015
  __args?: {
@@ -6877,7 +6035,6 @@ export interface UpdateEquipmentInput {
6877
6035
  /** Represents an update to a `Equipment`. Fields that are set will be updated. */
6878
6036
  export interface EquipmentPatch {
6879
6037
  id?: (Scalars['Int'] | null);
6880
- item?: (Scalars['Int'] | null);
6881
6038
  power?: (Scalars['Int'] | null);
6882
6039
  musRequirement?: (Scalars['Int'] | null);
6883
6040
  mysRequirement?: (Scalars['Int'] | null);
@@ -7292,7 +6449,8 @@ export interface MonsterPatch {
7292
6449
  itemBlockChance?: (Scalars['Float'] | null);
7293
6450
  lucky?: (Scalars['Boolean'] | null);
7294
6451
  manuel?: (Scalars['String'] | null);
7295
- meat?: (Scalars['String'] | null);
6452
+ meat?: (Scalars['Float'] | null);
6453
+ meatExpression?: (Scalars['String'] | null);
7296
6454
  monsterLevelMultiplier?: (Scalars['String'] | null);
7297
6455
  name?: (Scalars['String'] | null);
7298
6456
  nobanish?: (Scalars['Boolean'] | null);
@@ -7598,6 +6756,49 @@ export interface DeleteClassByIdInput {
7598
6756
  clientMutationId?: (Scalars['String'] | null);
7599
6757
  id: Scalars['Int'];
7600
6758
  }
6759
+ /** The output of our delete `Consumable` mutation. */
6760
+ export interface DeleteConsumablePayloadGenqlSelection {
6761
+ /**
6762
+ * The exact same `clientMutationId` that was provided in the mutation input,
6763
+ * unchanged and unused. May be used by a client to track mutations.
6764
+ */
6765
+ clientMutationId?: boolean | number;
6766
+ /** The `Consumable` that was deleted by this mutation. */
6767
+ consumable?: ConsumableGenqlSelection;
6768
+ deletedConsumableId?: boolean | number;
6769
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
6770
+ query?: QueryGenqlSelection;
6771
+ /** Reads a single `Item` that is related to this `Consumable`. */
6772
+ itemById?: ItemGenqlSelection;
6773
+ /** An edge for our `Consumable`. May be used by Relay 1. */
6774
+ consumableEdge?: (ConsumablesEdgeGenqlSelection & {
6775
+ __args?: {
6776
+ /** The method to use when ordering `Consumable`. */
6777
+ orderBy?: (ConsumablesOrderBy[] | null);
6778
+ };
6779
+ });
6780
+ __typename?: boolean | number;
6781
+ __scalar?: boolean | number;
6782
+ }
6783
+ /** All input for the `deleteConsumable` mutation. */
6784
+ export interface DeleteConsumableInput {
6785
+ /**
6786
+ * An arbitrary string value with no semantic meaning. Will be included in the
6787
+ * payload verbatim. May be used to track mutations by the client.
6788
+ */
6789
+ clientMutationId?: (Scalars['String'] | null);
6790
+ /** The globally unique `ID` which will identify a single `Consumable` to be deleted. */
6791
+ nodeId: Scalars['ID'];
6792
+ }
6793
+ /** All input for the `deleteConsumableById` mutation. */
6794
+ export interface DeleteConsumableByIdInput {
6795
+ /**
6796
+ * An arbitrary string value with no semantic meaning. Will be included in the
6797
+ * payload verbatim. May be used to track mutations by the client.
6798
+ */
6799
+ clientMutationId?: (Scalars['String'] | null);
6800
+ id: Scalars['Int'];
6801
+ }
7601
6802
  /** The output of our delete `EffectModifier` mutation. */
7602
6803
  export interface DeleteEffectModifierPayloadGenqlSelection {
7603
6804
  /**
@@ -7704,7 +6905,7 @@ export interface DeleteEquipmentPayloadGenqlSelection {
7704
6905
  /** Our root query field type. Allows us to run any query from our mutation payload. */
7705
6906
  query?: QueryGenqlSelection;
7706
6907
  /** Reads a single `Item` that is related to this `Equipment`. */
7707
- itemByItem?: ItemGenqlSelection;
6908
+ itemById?: ItemGenqlSelection;
7708
6909
  /** An edge for our `Equipment`. May be used by Relay 1. */
7709
6910
  equipmentEdge?: (EquipmentEdgeGenqlSelection & {
7710
6911
  __args?: {
@@ -8234,33 +7435,18 @@ export declare const isClassesEdge: (obj?: {
8234
7435
  export declare const isPageInfo: (obj?: {
8235
7436
  __typename?: any;
8236
7437
  } | null) => obj is PageInfo;
8237
- export declare const isEffectModifiersConnection: (obj?: {
8238
- __typename?: any;
8239
- } | null) => obj is EffectModifiersConnection;
8240
- export declare const isEffectModifier: (obj?: {
8241
- __typename?: any;
8242
- } | null) => obj is EffectModifier;
8243
- export declare const isEffect: (obj?: {
8244
- __typename?: any;
8245
- } | null) => obj is Effect;
8246
- export declare const isEffectModifiersEdge: (obj?: {
8247
- __typename?: any;
8248
- } | null) => obj is EffectModifiersEdge;
8249
- export declare const isEffectsConnection: (obj?: {
7438
+ export declare const isConsumablesConnection: (obj?: {
8250
7439
  __typename?: any;
8251
- } | null) => obj is EffectsConnection;
8252
- export declare const isEffectsEdge: (obj?: {
7440
+ } | null) => obj is ConsumablesConnection;
7441
+ export declare const isConsumable: (obj?: {
8253
7442
  __typename?: any;
8254
- } | null) => obj is EffectsEdge;
8255
- export declare const isEquipmentConnection: (obj?: {
7443
+ } | null) => obj is Consumable;
7444
+ export declare const isItem: (obj?: {
8256
7445
  __typename?: any;
8257
- } | null) => obj is EquipmentConnection;
7446
+ } | null) => obj is Item;
8258
7447
  export declare const isEquipment: (obj?: {
8259
7448
  __typename?: any;
8260
7449
  } | null) => obj is Equipment;
8261
- export declare const isItem: (obj?: {
8262
- __typename?: any;
8263
- } | null) => obj is Item;
8264
7450
  export declare const isFamiliarsConnection: (obj?: {
8265
7451
  __typename?: any;
8266
7452
  } | null) => obj is FamiliarsConnection;
@@ -8270,12 +7456,6 @@ export declare const isFamiliar: (obj?: {
8270
7456
  export declare const isFamiliarModifier: (obj?: {
8271
7457
  __typename?: any;
8272
7458
  } | null) => obj is FamiliarModifier;
8273
- export declare const isFamiliarModifiersConnection: (obj?: {
8274
- __typename?: any;
8275
- } | null) => obj is FamiliarModifiersConnection;
8276
- export declare const isFamiliarModifiersEdge: (obj?: {
8277
- __typename?: any;
8278
- } | null) => obj is FamiliarModifiersEdge;
8279
7459
  export declare const isFamiliarsEdge: (obj?: {
8280
7460
  __typename?: any;
8281
7461
  } | null) => obj is FamiliarsEdge;
@@ -8327,21 +7507,51 @@ export declare const isFoldablesEdge: (obj?: {
8327
7507
  export declare const isItemModifier: (obj?: {
8328
7508
  __typename?: any;
8329
7509
  } | null) => obj is ItemModifier;
8330
- export declare const isItemModifiersConnection: (obj?: {
7510
+ export declare const isConsumablesEdge: (obj?: {
8331
7511
  __typename?: any;
8332
- } | null) => obj is ItemModifiersConnection;
8333
- export declare const isItemModifiersEdge: (obj?: {
7512
+ } | null) => obj is ConsumablesEdge;
7513
+ export declare const isEffectModifiersConnection: (obj?: {
8334
7514
  __typename?: any;
8335
- } | null) => obj is ItemModifiersEdge;
7515
+ } | null) => obj is EffectModifiersConnection;
7516
+ export declare const isEffectModifier: (obj?: {
7517
+ __typename?: any;
7518
+ } | null) => obj is EffectModifier;
7519
+ export declare const isEffect: (obj?: {
7520
+ __typename?: any;
7521
+ } | null) => obj is Effect;
7522
+ export declare const isEffectModifiersEdge: (obj?: {
7523
+ __typename?: any;
7524
+ } | null) => obj is EffectModifiersEdge;
7525
+ export declare const isEffectsConnection: (obj?: {
7526
+ __typename?: any;
7527
+ } | null) => obj is EffectsConnection;
7528
+ export declare const isEffectsEdge: (obj?: {
7529
+ __typename?: any;
7530
+ } | null) => obj is EffectsEdge;
7531
+ export declare const isEquipmentConnection: (obj?: {
7532
+ __typename?: any;
7533
+ } | null) => obj is EquipmentConnection;
8336
7534
  export declare const isEquipmentEdge: (obj?: {
8337
7535
  __typename?: any;
8338
7536
  } | null) => obj is EquipmentEdge;
7537
+ export declare const isFamiliarModifiersConnection: (obj?: {
7538
+ __typename?: any;
7539
+ } | null) => obj is FamiliarModifiersConnection;
7540
+ export declare const isFamiliarModifiersEdge: (obj?: {
7541
+ __typename?: any;
7542
+ } | null) => obj is FamiliarModifiersEdge;
8339
7543
  export declare const isFoldGroupsConnection: (obj?: {
8340
7544
  __typename?: any;
8341
7545
  } | null) => obj is FoldGroupsConnection;
8342
7546
  export declare const isFoldGroupsEdge: (obj?: {
8343
7547
  __typename?: any;
8344
7548
  } | null) => obj is FoldGroupsEdge;
7549
+ export declare const isItemModifiersConnection: (obj?: {
7550
+ __typename?: any;
7551
+ } | null) => obj is ItemModifiersConnection;
7552
+ export declare const isItemModifiersEdge: (obj?: {
7553
+ __typename?: any;
7554
+ } | null) => obj is ItemModifiersEdge;
8345
7555
  export declare const isItemsConnection: (obj?: {
8346
7556
  __typename?: any;
8347
7557
  } | null) => obj is ItemsConnection;
@@ -8408,6 +7618,9 @@ export declare const isMutation: (obj?: {
8408
7618
  export declare const isCreateClassPayload: (obj?: {
8409
7619
  __typename?: any;
8410
7620
  } | null) => obj is CreateClassPayload;
7621
+ export declare const isCreateConsumablePayload: (obj?: {
7622
+ __typename?: any;
7623
+ } | null) => obj is CreateConsumablePayload;
8411
7624
  export declare const isCreateEffectModifierPayload: (obj?: {
8412
7625
  __typename?: any;
8413
7626
  } | null) => obj is CreateEffectModifierPayload;
@@ -8468,6 +7681,9 @@ export declare const isCreateSkillPayload: (obj?: {
8468
7681
  export declare const isUpdateClassPayload: (obj?: {
8469
7682
  __typename?: any;
8470
7683
  } | null) => obj is UpdateClassPayload;
7684
+ export declare const isUpdateConsumablePayload: (obj?: {
7685
+ __typename?: any;
7686
+ } | null) => obj is UpdateConsumablePayload;
8471
7687
  export declare const isUpdateEffectModifierPayload: (obj?: {
8472
7688
  __typename?: any;
8473
7689
  } | null) => obj is UpdateEffectModifierPayload;
@@ -8513,6 +7729,9 @@ export declare const isUpdateSkillPayload: (obj?: {
8513
7729
  export declare const isDeleteClassPayload: (obj?: {
8514
7730
  __typename?: any;
8515
7731
  } | null) => obj is DeleteClassPayload;
7732
+ export declare const isDeleteConsumablePayload: (obj?: {
7733
+ __typename?: any;
7734
+ } | null) => obj is DeleteConsumablePayload;
8516
7735
  export declare const isDeleteEffectModifierPayload: (obj?: {
8517
7736
  __typename?: any;
8518
7737
  } | null) => obj is DeleteEffectModifierPayload;
@@ -8580,46 +7799,20 @@ export declare const enumClassesOrderBy: {
8580
7799
  PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8581
7800
  PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8582
7801
  };
8583
- export declare const enumEffectQuality: {
8584
- BAD: "BAD";
7802
+ export declare const enumConsumableQuality: {
7803
+ EPIC: "EPIC";
7804
+ AWESOME: "AWESOME";
7805
+ CHANGING: "CHANGING";
7806
+ CRAPPY: "CRAPPY";
7807
+ DECENT: "DECENT";
7808
+ DRIPPY: "DRIPPY";
8585
7809
  GOOD: "GOOD";
8586
- NEUTRAL: "NEUTRAL";
8587
- };
8588
- export declare const enumEffectModifiersOrderBy: {
8589
- NATURAL: "NATURAL";
8590
- EFFECT_ASC: "EFFECT_ASC";
8591
- EFFECT_DESC: "EFFECT_DESC";
8592
- MODIFIERS_ASC: "MODIFIERS_ASC";
8593
- MODIFIERS_DESC: "MODIFIERS_DESC";
8594
- PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8595
- PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8596
- };
8597
- export declare const enumEffectsOrderBy: {
8598
- NATURAL: "NATURAL";
8599
- ID_ASC: "ID_ASC";
8600
- ID_DESC: "ID_DESC";
8601
- NAME_ASC: "NAME_ASC";
8602
- NAME_DESC: "NAME_DESC";
8603
- DESCID_ASC: "DESCID_ASC";
8604
- DESCID_DESC: "DESCID_DESC";
8605
- IMAGE_ASC: "IMAGE_ASC";
8606
- IMAGE_DESC: "IMAGE_DESC";
8607
- QUALITY_ASC: "QUALITY_ASC";
8608
- QUALITY_DESC: "QUALITY_DESC";
8609
- NOHOOKAH_ASC: "NOHOOKAH_ASC";
8610
- NOHOOKAH_DESC: "NOHOOKAH_DESC";
8611
- NOPVP_ASC: "NOPVP_ASC";
8612
- NOPVP_DESC: "NOPVP_DESC";
8613
- NOREMOVE_ASC: "NOREMOVE_ASC";
8614
- NOREMOVE_DESC: "NOREMOVE_DESC";
8615
- SONG_ASC: "SONG_ASC";
8616
- SONG_DESC: "SONG_DESC";
8617
- ACTIONS_ASC: "ACTIONS_ASC";
8618
- ACTIONS_DESC: "ACTIONS_DESC";
8619
- AMBIGUOUS_ASC: "AMBIGUOUS_ASC";
8620
- AMBIGUOUS_DESC: "AMBIGUOUS_DESC";
8621
- PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8622
- PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
7810
+ NONE: "NONE";
7811
+ QUEST: "QUEST";
7812
+ SUPER_EPIC: "SUPER_EPIC";
7813
+ SUPER_ULTRA_EPIC: "SUPER_ULTRA_EPIC";
7814
+ SUPER_ULTRA_MEGA_EPIC: "SUPER_ULTRA_MEGA_EPIC";
7815
+ SUPER_ULTRA_MEGA_TURBO_EPIC: "SUPER_ULTRA_MEGA_TURBO_EPIC";
8623
7816
  };
8624
7817
  export declare const enumItemUse: {
8625
7818
  ACCESSORY: "ACCESSORY";
@@ -8670,27 +7863,6 @@ export declare const enumItemUse: {
8670
7863
  WEAPON: "WEAPON";
8671
7864
  ZAP: "ZAP";
8672
7865
  };
8673
- export declare const enumEquipmentOrderBy: {
8674
- NATURAL: "NATURAL";
8675
- ID_ASC: "ID_ASC";
8676
- ID_DESC: "ID_DESC";
8677
- ITEM_ASC: "ITEM_ASC";
8678
- ITEM_DESC: "ITEM_DESC";
8679
- POWER_ASC: "POWER_ASC";
8680
- POWER_DESC: "POWER_DESC";
8681
- MUS_REQUIREMENT_ASC: "MUS_REQUIREMENT_ASC";
8682
- MUS_REQUIREMENT_DESC: "MUS_REQUIREMENT_DESC";
8683
- MYS_REQUIREMENT_ASC: "MYS_REQUIREMENT_ASC";
8684
- MYS_REQUIREMENT_DESC: "MYS_REQUIREMENT_DESC";
8685
- MOX_REQUIREMENT_ASC: "MOX_REQUIREMENT_ASC";
8686
- MOX_REQUIREMENT_DESC: "MOX_REQUIREMENT_DESC";
8687
- TYPE_ASC: "TYPE_ASC";
8688
- TYPE_DESC: "TYPE_DESC";
8689
- HANDS_ASC: "HANDS_ASC";
8690
- HANDS_DESC: "HANDS_DESC";
8691
- PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8692
- PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8693
- };
8694
7866
  export declare const enumFamiliarCategory: {
8695
7867
  BLOCK: "BLOCK";
8696
7868
  COMBAT0: "COMBAT0";
@@ -8717,35 +7889,6 @@ export declare const enumFamiliarCategory: {
8717
7889
  UNDERWATER: "UNDERWATER";
8718
7890
  VARIABLE: "VARIABLE";
8719
7891
  };
8720
- export declare const enumMonsterDropCategory: {
8721
- A: "A";
8722
- C: "C";
8723
- F: "F";
8724
- M: "M";
8725
- N: "N";
8726
- P: "P";
8727
- };
8728
- export declare const enumMonsterElement: {
8729
- BAD_SPELLING: "BAD_SPELLING";
8730
- COLD: "COLD";
8731
- CUTE: "CUTE";
8732
- HOT: "HOT";
8733
- SHADOW: "SHADOW";
8734
- SLEAZE: "SLEAZE";
8735
- SLIME: "SLIME";
8736
- SPOOKY: "SPOOKY";
8737
- STENCH: "STENCH";
8738
- SUPERCOLD: "SUPERCOLD";
8739
- };
8740
- export declare const enumFamiliarModifiersOrderBy: {
8741
- NATURAL: "NATURAL";
8742
- FAMILIAR_ASC: "FAMILIAR_ASC";
8743
- FAMILIAR_DESC: "FAMILIAR_DESC";
8744
- MODIFIERS_ASC: "MODIFIERS_ASC";
8745
- MODIFIERS_DESC: "MODIFIERS_DESC";
8746
- PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8747
- PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8748
- };
8749
7892
  export declare const enumFamiliarsOrderBy: {
8750
7893
  NATURAL: "NATURAL";
8751
7894
  ID_ASC: "ID_ASC";
@@ -8773,6 +7916,26 @@ export declare const enumFamiliarsOrderBy: {
8773
7916
  PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8774
7917
  PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8775
7918
  };
7919
+ export declare const enumMonsterDropCategory: {
7920
+ A: "A";
7921
+ C: "C";
7922
+ F: "F";
7923
+ M: "M";
7924
+ N: "N";
7925
+ P: "P";
7926
+ };
7927
+ export declare const enumMonsterElement: {
7928
+ BAD_SPELLING: "BAD_SPELLING";
7929
+ COLD: "COLD";
7930
+ CUTE: "CUTE";
7931
+ HOT: "HOT";
7932
+ SHADOW: "SHADOW";
7933
+ SLEAZE: "SLEAZE";
7934
+ SLIME: "SLIME";
7935
+ SPOOKY: "SPOOKY";
7936
+ STENCH: "STENCH";
7937
+ SUPERCOLD: "SUPERCOLD";
7938
+ };
8776
7939
  export declare const enumMonsterDropsOrderBy: {
8777
7940
  NATURAL: "NATURAL";
8778
7941
  MONSTER_ASC: "MONSTER_ASC";
@@ -8807,10 +7970,105 @@ export declare const enumFoldablesOrderBy: {
8807
7970
  ITEM_ASC: "ITEM_ASC";
8808
7971
  ITEM_DESC: "ITEM_DESC";
8809
7972
  };
8810
- export declare const enumItemModifiersOrderBy: {
7973
+ export declare const enumConsumablesOrderBy: {
8811
7974
  NATURAL: "NATURAL";
8812
- ITEM_ASC: "ITEM_ASC";
8813
- ITEM_DESC: "ITEM_DESC";
7975
+ ID_ASC: "ID_ASC";
7976
+ ID_DESC: "ID_DESC";
7977
+ STOMACH_ASC: "STOMACH_ASC";
7978
+ STOMACH_DESC: "STOMACH_DESC";
7979
+ LIVER_ASC: "LIVER_ASC";
7980
+ LIVER_DESC: "LIVER_DESC";
7981
+ SPLEEN_ASC: "SPLEEN_ASC";
7982
+ SPLEEN_DESC: "SPLEEN_DESC";
7983
+ LEVEL_REQUIREMENT_ASC: "LEVEL_REQUIREMENT_ASC";
7984
+ LEVEL_REQUIREMENT_DESC: "LEVEL_REQUIREMENT_DESC";
7985
+ QUALITY_ASC: "QUALITY_ASC";
7986
+ QUALITY_DESC: "QUALITY_DESC";
7987
+ ADVENTURE_RANGE_ASC: "ADVENTURE_RANGE_ASC";
7988
+ ADVENTURE_RANGE_DESC: "ADVENTURE_RANGE_DESC";
7989
+ ADVENTURES_ASC: "ADVENTURES_ASC";
7990
+ ADVENTURES_DESC: "ADVENTURES_DESC";
7991
+ MUSCLE_ASC: "MUSCLE_ASC";
7992
+ MUSCLE_DESC: "MUSCLE_DESC";
7993
+ MUSCLE_RANGE_ASC: "MUSCLE_RANGE_ASC";
7994
+ MUSCLE_RANGE_DESC: "MUSCLE_RANGE_DESC";
7995
+ MYSTICALITY_ASC: "MYSTICALITY_ASC";
7996
+ MYSTICALITY_DESC: "MYSTICALITY_DESC";
7997
+ MYSTICALITY_RANGE_ASC: "MYSTICALITY_RANGE_ASC";
7998
+ MYSTICALITY_RANGE_DESC: "MYSTICALITY_RANGE_DESC";
7999
+ MOXIE_ASC: "MOXIE_ASC";
8000
+ MOXIE_DESC: "MOXIE_DESC";
8001
+ MOXIE_RANGE_ASC: "MOXIE_RANGE_ASC";
8002
+ MOXIE_RANGE_DESC: "MOXIE_RANGE_DESC";
8003
+ NOTES_ASC: "NOTES_ASC";
8004
+ NOTES_DESC: "NOTES_DESC";
8005
+ PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8006
+ PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8007
+ };
8008
+ export declare const enumEffectQuality: {
8009
+ BAD: "BAD";
8010
+ GOOD: "GOOD";
8011
+ NEUTRAL: "NEUTRAL";
8012
+ };
8013
+ export declare const enumEffectModifiersOrderBy: {
8014
+ NATURAL: "NATURAL";
8015
+ EFFECT_ASC: "EFFECT_ASC";
8016
+ EFFECT_DESC: "EFFECT_DESC";
8017
+ MODIFIERS_ASC: "MODIFIERS_ASC";
8018
+ MODIFIERS_DESC: "MODIFIERS_DESC";
8019
+ PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8020
+ PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8021
+ };
8022
+ export declare const enumEffectsOrderBy: {
8023
+ NATURAL: "NATURAL";
8024
+ ID_ASC: "ID_ASC";
8025
+ ID_DESC: "ID_DESC";
8026
+ NAME_ASC: "NAME_ASC";
8027
+ NAME_DESC: "NAME_DESC";
8028
+ DESCID_ASC: "DESCID_ASC";
8029
+ DESCID_DESC: "DESCID_DESC";
8030
+ IMAGE_ASC: "IMAGE_ASC";
8031
+ IMAGE_DESC: "IMAGE_DESC";
8032
+ QUALITY_ASC: "QUALITY_ASC";
8033
+ QUALITY_DESC: "QUALITY_DESC";
8034
+ NOHOOKAH_ASC: "NOHOOKAH_ASC";
8035
+ NOHOOKAH_DESC: "NOHOOKAH_DESC";
8036
+ NOPVP_ASC: "NOPVP_ASC";
8037
+ NOPVP_DESC: "NOPVP_DESC";
8038
+ NOREMOVE_ASC: "NOREMOVE_ASC";
8039
+ NOREMOVE_DESC: "NOREMOVE_DESC";
8040
+ SONG_ASC: "SONG_ASC";
8041
+ SONG_DESC: "SONG_DESC";
8042
+ ACTIONS_ASC: "ACTIONS_ASC";
8043
+ ACTIONS_DESC: "ACTIONS_DESC";
8044
+ AMBIGUOUS_ASC: "AMBIGUOUS_ASC";
8045
+ AMBIGUOUS_DESC: "AMBIGUOUS_DESC";
8046
+ PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8047
+ PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8048
+ };
8049
+ export declare const enumEquipmentOrderBy: {
8050
+ NATURAL: "NATURAL";
8051
+ ID_ASC: "ID_ASC";
8052
+ ID_DESC: "ID_DESC";
8053
+ POWER_ASC: "POWER_ASC";
8054
+ POWER_DESC: "POWER_DESC";
8055
+ MUS_REQUIREMENT_ASC: "MUS_REQUIREMENT_ASC";
8056
+ MUS_REQUIREMENT_DESC: "MUS_REQUIREMENT_DESC";
8057
+ MYS_REQUIREMENT_ASC: "MYS_REQUIREMENT_ASC";
8058
+ MYS_REQUIREMENT_DESC: "MYS_REQUIREMENT_DESC";
8059
+ MOX_REQUIREMENT_ASC: "MOX_REQUIREMENT_ASC";
8060
+ MOX_REQUIREMENT_DESC: "MOX_REQUIREMENT_DESC";
8061
+ TYPE_ASC: "TYPE_ASC";
8062
+ TYPE_DESC: "TYPE_DESC";
8063
+ HANDS_ASC: "HANDS_ASC";
8064
+ HANDS_DESC: "HANDS_DESC";
8065
+ PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8066
+ PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8067
+ };
8068
+ export declare const enumFamiliarModifiersOrderBy: {
8069
+ NATURAL: "NATURAL";
8070
+ FAMILIAR_ASC: "FAMILIAR_ASC";
8071
+ FAMILIAR_DESC: "FAMILIAR_DESC";
8814
8072
  MODIFIERS_ASC: "MODIFIERS_ASC";
8815
8073
  MODIFIERS_DESC: "MODIFIERS_DESC";
8816
8074
  PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
@@ -8825,6 +8083,15 @@ export declare const enumFoldGroupsOrderBy: {
8825
8083
  PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8826
8084
  PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8827
8085
  };
8086
+ export declare const enumItemModifiersOrderBy: {
8087
+ NATURAL: "NATURAL";
8088
+ ITEM_ASC: "ITEM_ASC";
8089
+ ITEM_DESC: "ITEM_DESC";
8090
+ MODIFIERS_ASC: "MODIFIERS_ASC";
8091
+ MODIFIERS_DESC: "MODIFIERS_DESC";
8092
+ PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8093
+ PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8094
+ };
8828
8095
  export declare const enumItemsOrderBy: {
8829
8096
  NATURAL: "NATURAL";
8830
8097
  ID_ASC: "ID_ASC";
@@ -8944,6 +8211,8 @@ export declare const enumMonstersOrderBy: {
8944
8211
  MANUEL_DESC: "MANUEL_DESC";
8945
8212
  MEAT_ASC: "MEAT_ASC";
8946
8213
  MEAT_DESC: "MEAT_DESC";
8214
+ MEAT_EXPRESSION_ASC: "MEAT_EXPRESSION_ASC";
8215
+ MEAT_EXPRESSION_DESC: "MEAT_EXPRESSION_DESC";
8947
8216
  MONSTER_LEVEL_MULTIPLIER_ASC: "MONSTER_LEVEL_MULTIPLIER_ASC";
8948
8217
  MONSTER_LEVEL_MULTIPLIER_DESC: "MONSTER_LEVEL_MULTIPLIER_DESC";
8949
8218
  NAME_ASC: "NAME_ASC";