data-of-loathing 2.1.0 → 2.3.0

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
@@ -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 `Concoction`. */
25
+ allConcoctions: (ConcoctionsConnection | null);
24
26
  /** Reads and enables pagination through a set of `Consumable`. */
25
27
  allConsumables: (ConsumablesConnection | null);
26
28
  /** Reads and enables pagination through a set of `EffectModifier`. */
@@ -37,6 +39,8 @@ export interface Query {
37
39
  allFoldGroups: (FoldGroupsConnection | null);
38
40
  /** Reads and enables pagination through a set of `Foldable`. */
39
41
  allFoldables: (FoldablesConnection | null);
42
+ /** Reads and enables pagination through a set of `Ingredient`. */
43
+ allIngredients: (IngredientsConnection | null);
40
44
  /** Reads and enables pagination through a set of `ItemModifier`. */
41
45
  allItemModifiers: (ItemModifiersConnection | null);
42
46
  /** Reads and enables pagination through a set of `Item`. */
@@ -49,6 +53,8 @@ export interface Query {
49
53
  allMonsterDrops: (MonsterDropsConnection | null);
50
54
  /** Reads and enables pagination through a set of `Monster`. */
51
55
  allMonsters: (MonstersConnection | null);
56
+ /** Reads and enables pagination through a set of `NativeMonster`. */
57
+ allNativeMonsters: (NativeMonstersConnection | null);
52
58
  /** Reads and enables pagination through a set of `OutfitEquipment`. */
53
59
  allOutfitEquipments: (OutfitEquipmentsConnection | null);
54
60
  /** Reads and enables pagination through a set of `OutfitTreat`. */
@@ -62,6 +68,7 @@ export interface Query {
62
68
  /** Reads and enables pagination through a set of `Skill`. */
63
69
  allSkills: (SkillsConnection | null);
64
70
  classById: (Class | null);
71
+ concoctionById: (Concoction | null);
65
72
  consumableById: (Consumable | null);
66
73
  effectModifierByEffect: (EffectModifier | null);
67
74
  effectById: (Effect | null);
@@ -82,6 +89,8 @@ export interface Query {
82
89
  skillById: (Skill | null);
83
90
  /** Reads a single `Class` using its globally unique `ID`. */
84
91
  class: (Class | null);
92
+ /** Reads a single `Concoction` using its globally unique `ID`. */
93
+ concoction: (Concoction | null);
85
94
  /** Reads a single `Consumable` using its globally unique `ID`. */
86
95
  consumable: (Consumable | null);
87
96
  /** Reads a single `EffectModifier` using its globally unique `ID`. */
@@ -115,7 +124,7 @@ export interface Query {
115
124
  __typename: 'Query';
116
125
  }
117
126
  /** An object with a globally unique `ID`. */
118
- export type Node = (Query | Class | Path | Consumable | Item | Equipment | Familiar | FamiliarModifier | Monster | Outfit | FoldGroup | ItemModifier | EffectModifier | Effect | Location | SkillModifier | Skill) & {
127
+ export type Node = (Query | Class | Path | Concoction | Item | Equipment | Consumable | Familiar | FamiliarModifier | Monster | Location | Outfit | FoldGroup | ItemModifier | EffectModifier | Effect | SkillModifier | Skill) & {
119
128
  __isUnion?: true;
120
129
  };
121
130
  /** A connection to a list of `Class` values. */
@@ -188,41 +197,31 @@ export interface PageInfo {
188
197
  endCursor: (Scalars['Cursor'] | null);
189
198
  __typename: 'PageInfo';
190
199
  }
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[];
200
+ /** A connection to a list of `Concoction` values. */
201
+ export interface ConcoctionsConnection {
202
+ /** A list of `Concoction` objects. */
203
+ nodes: (Concoction | null)[];
204
+ /** A list of edges which contains the `Concoction` and cursor to aid in pagination. */
205
+ edges: ConcoctionsEdge[];
197
206
  /** Information to aid in pagination. */
198
207
  pageInfo: PageInfo;
199
- /** The count of *all* `Consumable` you could get from the connection. */
208
+ /** The count of *all* `Concoction` you could get from the connection. */
200
209
  totalCount: Scalars['Int'];
201
- __typename: 'ConsumablesConnection';
210
+ __typename: 'ConcoctionsConnection';
202
211
  }
203
- export interface Consumable {
212
+ export interface Concoction {
204
213
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
205
214
  nodeId: Scalars['ID'];
206
215
  id: Scalars['Int'];
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';
216
+ item: Scalars['Int'];
217
+ methods: (Scalars['String'] | null)[];
218
+ comment: (Scalars['String'] | null);
219
+ /** Reads a single `Item` that is related to this `Concoction`. */
220
+ itemByItem: (Item | null);
221
+ /** Reads and enables pagination through a set of `Ingredient`. */
222
+ ingredientsByConcoction: IngredientsConnection;
223
+ __typename: 'Concoction';
224
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';
226
225
  export interface Item {
227
226
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
228
227
  nodeId: Scalars['ID'];
@@ -256,6 +255,10 @@ export interface Item {
256
255
  foldablesByItem: FoldablesConnection;
257
256
  /** Reads a single `ItemModifier` that is related to this `Item`. */
258
257
  itemModifierByItem: (ItemModifier | null);
258
+ /** Reads and enables pagination through a set of `Concoction`. */
259
+ concoctionsByItem: ConcoctionsConnection;
260
+ /** Reads and enables pagination through a set of `Ingredient`. */
261
+ ingredientsByItem: IngredientsConnection;
259
262
  __typename: 'Item';
260
263
  }
261
264
  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';
@@ -273,6 +276,29 @@ export interface Equipment {
273
276
  itemById: (Item | null);
274
277
  __typename: 'Equipment';
275
278
  }
279
+ export interface Consumable {
280
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
281
+ nodeId: Scalars['ID'];
282
+ id: Scalars['Int'];
283
+ stomach: Scalars['Int'];
284
+ liver: Scalars['Int'];
285
+ spleen: Scalars['Int'];
286
+ levelRequirement: Scalars['Int'];
287
+ quality: (ConsumableQuality | null);
288
+ adventureRange: Scalars['String'];
289
+ adventures: Scalars['Float'];
290
+ muscle: Scalars['Float'];
291
+ muscleRange: Scalars['String'];
292
+ mysticality: Scalars['Float'];
293
+ mysticalityRange: Scalars['String'];
294
+ moxie: Scalars['Float'];
295
+ moxieRange: Scalars['String'];
296
+ notes: (Scalars['String'] | null);
297
+ /** Reads a single `Item` that is related to this `Consumable`. */
298
+ itemById: (Item | null);
299
+ __typename: 'Consumable';
300
+ }
301
+ 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';
276
302
  /** A connection to a list of `Familiar` values. */
277
303
  export interface FamiliarsConnection {
278
304
  /** A list of `Familiar` objects. */
@@ -401,11 +427,67 @@ export interface Monster {
401
427
  wish: Scalars['Boolean'];
402
428
  /** Reads and enables pagination through a set of `MonsterDrop`. */
403
429
  monsterDropsByMonster: MonsterDropsConnection;
430
+ /** Reads and enables pagination through a set of `NativeMonster`. */
431
+ nativeMonstersByMonster: NativeMonstersConnection;
404
432
  __typename: 'Monster';
405
433
  }
406
434
  export type MonsterElement = 'BAD_SPELLING' | 'COLD' | 'CUTE' | 'HOT' | 'SHADOW' | 'SLEAZE' | 'SLIME' | 'SPOOKY' | 'STENCH' | 'SUPERCOLD';
407
435
  /** Methods to use when ordering `MonsterDrop`. */
408
436
  export type MonsterDropsOrderBy = 'NATURAL' | 'MONSTER_ASC' | 'MONSTER_DESC' | 'ITEM_ASC' | 'ITEM_DESC' | 'RATE_ASC' | 'RATE_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC';
437
+ /** A connection to a list of `NativeMonster` values. */
438
+ export interface NativeMonstersConnection {
439
+ /** A list of `NativeMonster` objects. */
440
+ nodes: (NativeMonster | null)[];
441
+ /** A list of edges which contains the `NativeMonster` and cursor to aid in pagination. */
442
+ edges: NativeMonstersEdge[];
443
+ /** Information to aid in pagination. */
444
+ pageInfo: PageInfo;
445
+ /** The count of *all* `NativeMonster` you could get from the connection. */
446
+ totalCount: Scalars['Int'];
447
+ __typename: 'NativeMonstersConnection';
448
+ }
449
+ export interface NativeMonster {
450
+ location: Scalars['String'];
451
+ monster: Scalars['Int'];
452
+ weight: Scalars['Float'];
453
+ rejection: Scalars['Float'];
454
+ parity: (Scalars['Int'] | null);
455
+ /** Reads a single `Location` that is related to this `NativeMonster`. */
456
+ locationByLocation: (Location | null);
457
+ /** Reads a single `Monster` that is related to this `NativeMonster`. */
458
+ monsterByMonster: (Monster | null);
459
+ __typename: 'NativeMonster';
460
+ }
461
+ export interface Location {
462
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
463
+ nodeId: Scalars['ID'];
464
+ id: (Scalars['Int'] | null);
465
+ name: Scalars['String'];
466
+ zone: Scalars['String'];
467
+ url: Scalars['String'];
468
+ difficulty: LocationDifficulty;
469
+ environment: LocationEnvironment;
470
+ statRequirement: Scalars['Int'];
471
+ waterLevel: (Scalars['Int'] | null);
472
+ overdrunk: Scalars['Boolean'];
473
+ nowander: Scalars['Boolean'];
474
+ combatRate: Scalars['Int'];
475
+ /** Reads and enables pagination through a set of `NativeMonster`. */
476
+ nativeMonstersByLocation: NativeMonstersConnection;
477
+ __typename: 'Location';
478
+ }
479
+ export type LocationDifficulty = 'HIGH' | 'LOW' | 'MEDIUM' | 'NONE' | 'UNKNOWN';
480
+ export type LocationEnvironment = 'INDOOR' | 'NONE' | 'OUTDOOR' | 'UNDERGROUND' | 'UNDERWATER';
481
+ /** Methods to use when ordering `NativeMonster`. */
482
+ export type NativeMonstersOrderBy = 'NATURAL' | 'LOCATION_ASC' | 'LOCATION_DESC' | 'MONSTER_ASC' | 'MONSTER_DESC' | 'WEIGHT_ASC' | 'WEIGHT_DESC' | 'REJECTION_ASC' | 'REJECTION_DESC' | 'PARITY_ASC' | 'PARITY_DESC';
483
+ /** A `NativeMonster` edge in the connection. */
484
+ export interface NativeMonstersEdge {
485
+ /** A cursor for use in pagination. */
486
+ cursor: (Scalars['Cursor'] | null);
487
+ /** The `NativeMonster` at the end of the edge. */
488
+ node: (NativeMonster | null);
489
+ __typename: 'NativeMonstersEdge';
490
+ }
409
491
  /** A `MonsterDrop` edge in the connection. */
410
492
  export interface MonsterDropsEdge {
411
493
  /** A cursor for use in pagination. */
@@ -538,6 +620,60 @@ export interface ItemModifier {
538
620
  itemByItem: (Item | null);
539
621
  __typename: 'ItemModifier';
540
622
  }
623
+ /** Methods to use when ordering `Concoction`. */
624
+ export type ConcoctionsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'ITEM_ASC' | 'ITEM_DESC' | 'METHODS_ASC' | 'METHODS_DESC' | 'COMMENT_ASC' | 'COMMENT_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
625
+ /** A connection to a list of `Ingredient` values. */
626
+ export interface IngredientsConnection {
627
+ /** A list of `Ingredient` objects. */
628
+ nodes: (Ingredient | null)[];
629
+ /** A list of edges which contains the `Ingredient` and cursor to aid in pagination. */
630
+ edges: IngredientsEdge[];
631
+ /** Information to aid in pagination. */
632
+ pageInfo: PageInfo;
633
+ /** The count of *all* `Ingredient` you could get from the connection. */
634
+ totalCount: Scalars['Int'];
635
+ __typename: 'IngredientsConnection';
636
+ }
637
+ export interface Ingredient {
638
+ concoction: (Scalars['Int'] | null);
639
+ item: (Scalars['Int'] | null);
640
+ quantity: Scalars['Int'];
641
+ /** Reads a single `Concoction` that is related to this `Ingredient`. */
642
+ concoctionByConcoction: (Concoction | null);
643
+ /** Reads a single `Item` that is related to this `Ingredient`. */
644
+ itemByItem: (Item | null);
645
+ __typename: 'Ingredient';
646
+ }
647
+ /** A `Ingredient` edge in the connection. */
648
+ export interface IngredientsEdge {
649
+ /** A cursor for use in pagination. */
650
+ cursor: (Scalars['Cursor'] | null);
651
+ /** The `Ingredient` at the end of the edge. */
652
+ node: (Ingredient | null);
653
+ __typename: 'IngredientsEdge';
654
+ }
655
+ /** Methods to use when ordering `Ingredient`. */
656
+ export type IngredientsOrderBy = 'NATURAL' | 'CONCOCTION_ASC' | 'CONCOCTION_DESC' | 'ITEM_ASC' | 'ITEM_DESC' | 'QUANTITY_ASC' | 'QUANTITY_DESC';
657
+ /** A `Concoction` edge in the connection. */
658
+ export interface ConcoctionsEdge {
659
+ /** A cursor for use in pagination. */
660
+ cursor: (Scalars['Cursor'] | null);
661
+ /** The `Concoction` at the end of the edge. */
662
+ node: (Concoction | null);
663
+ __typename: 'ConcoctionsEdge';
664
+ }
665
+ /** A connection to a list of `Consumable` values. */
666
+ export interface ConsumablesConnection {
667
+ /** A list of `Consumable` objects. */
668
+ nodes: (Consumable | null)[];
669
+ /** A list of edges which contains the `Consumable` and cursor to aid in pagination. */
670
+ edges: ConsumablesEdge[];
671
+ /** Information to aid in pagination. */
672
+ pageInfo: PageInfo;
673
+ /** The count of *all* `Consumable` you could get from the connection. */
674
+ totalCount: Scalars['Int'];
675
+ __typename: 'ConsumablesConnection';
676
+ }
541
677
  /** A `Consumable` edge in the connection. */
542
678
  export interface ConsumablesEdge {
543
679
  /** A cursor for use in pagination. */
@@ -742,23 +878,6 @@ export interface LocationsConnection {
742
878
  totalCount: Scalars['Int'];
743
879
  __typename: 'LocationsConnection';
744
880
  }
745
- export interface Location {
746
- /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
747
- nodeId: Scalars['ID'];
748
- id: (Scalars['Int'] | null);
749
- name: Scalars['String'];
750
- zone: Scalars['String'];
751
- url: Scalars['String'];
752
- difficulty: LocationDifficulty;
753
- environment: LocationEnvironment;
754
- statRequirement: Scalars['Int'];
755
- waterLevel: (Scalars['Int'] | null);
756
- overdrunk: Scalars['Boolean'];
757
- nowander: Scalars['Boolean'];
758
- __typename: 'Location';
759
- }
760
- export type LocationDifficulty = 'HIGH' | 'LOW' | 'MEDIUM' | 'NONE' | 'UNKNOWN';
761
- export type LocationEnvironment = 'INDOOR' | 'NONE' | 'OUTDOOR' | 'UNDERGROUND' | 'UNDERWATER';
762
881
  /** A `Location` edge in the connection. */
763
882
  export interface LocationsEdge {
764
883
  /** A cursor for use in pagination. */
@@ -768,7 +887,7 @@ export interface LocationsEdge {
768
887
  __typename: 'LocationsEdge';
769
888
  }
770
889
  /** Methods to use when ordering `Location`. */
771
- export type LocationsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ZONE_ASC' | 'ZONE_DESC' | 'URL_ASC' | 'URL_DESC' | 'DIFFICULTY_ASC' | 'DIFFICULTY_DESC' | 'ENVIRONMENT_ASC' | 'ENVIRONMENT_DESC' | 'STAT_REQUIREMENT_ASC' | 'STAT_REQUIREMENT_DESC' | 'WATER_LEVEL_ASC' | 'WATER_LEVEL_DESC' | 'OVERDRUNK_ASC' | 'OVERDRUNK_DESC' | 'NOWANDER_ASC' | 'NOWANDER_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
890
+ export type LocationsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ZONE_ASC' | 'ZONE_DESC' | 'URL_ASC' | 'URL_DESC' | 'DIFFICULTY_ASC' | 'DIFFICULTY_DESC' | 'ENVIRONMENT_ASC' | 'ENVIRONMENT_DESC' | 'STAT_REQUIREMENT_ASC' | 'STAT_REQUIREMENT_DESC' | 'WATER_LEVEL_ASC' | 'WATER_LEVEL_DESC' | 'OVERDRUNK_ASC' | 'OVERDRUNK_DESC' | 'NOWANDER_ASC' | 'NOWANDER_DESC' | 'COMBAT_RATE_ASC' | 'COMBAT_RATE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
772
891
  /** A connection to a list of `Meta` values. */
773
892
  export interface MetasConnection {
774
893
  /** A list of `Meta` objects. */
@@ -936,6 +1055,8 @@ export type SkillsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAM
936
1055
  export interface Mutation {
937
1056
  /** Creates a single `Class`. */
938
1057
  createClass: (CreateClassPayload | null);
1058
+ /** Creates a single `Concoction`. */
1059
+ createConcoction: (CreateConcoctionPayload | null);
939
1060
  /** Creates a single `Consumable`. */
940
1061
  createConsumable: (CreateConsumablePayload | null);
941
1062
  /** Creates a single `EffectModifier`. */
@@ -952,6 +1073,8 @@ export interface Mutation {
952
1073
  createFoldGroup: (CreateFoldGroupPayload | null);
953
1074
  /** Creates a single `Foldable`. */
954
1075
  createFoldable: (CreateFoldablePayload | null);
1076
+ /** Creates a single `Ingredient`. */
1077
+ createIngredient: (CreateIngredientPayload | null);
955
1078
  /** Creates a single `ItemModifier`. */
956
1079
  createItemModifier: (CreateItemModifierPayload | null);
957
1080
  /** Creates a single `Item`. */
@@ -964,6 +1087,8 @@ export interface Mutation {
964
1087
  createMonsterDrop: (CreateMonsterDropPayload | null);
965
1088
  /** Creates a single `Monster`. */
966
1089
  createMonster: (CreateMonsterPayload | null);
1090
+ /** Creates a single `NativeMonster`. */
1091
+ createNativeMonster: (CreateNativeMonsterPayload | null);
967
1092
  /** Creates a single `OutfitEquipment`. */
968
1093
  createOutfitEquipment: (CreateOutfitEquipmentPayload | null);
969
1094
  /** Creates a single `OutfitTreat`. */
@@ -980,6 +1105,10 @@ export interface Mutation {
980
1105
  updateClass: (UpdateClassPayload | null);
981
1106
  /** Updates a single `Class` using a unique key and a patch. */
982
1107
  updateClassById: (UpdateClassPayload | null);
1108
+ /** Updates a single `Concoction` using its globally unique id and a patch. */
1109
+ updateConcoction: (UpdateConcoctionPayload | null);
1110
+ /** Updates a single `Concoction` using a unique key and a patch. */
1111
+ updateConcoctionById: (UpdateConcoctionPayload | null);
983
1112
  /** Updates a single `Consumable` using its globally unique id and a patch. */
984
1113
  updateConsumable: (UpdateConsumablePayload | null);
985
1114
  /** Updates a single `Consumable` using a unique key and a patch. */
@@ -1050,6 +1179,10 @@ export interface Mutation {
1050
1179
  deleteClass: (DeleteClassPayload | null);
1051
1180
  /** Deletes a single `Class` using a unique key. */
1052
1181
  deleteClassById: (DeleteClassPayload | null);
1182
+ /** Deletes a single `Concoction` using its globally unique id. */
1183
+ deleteConcoction: (DeleteConcoctionPayload | null);
1184
+ /** Deletes a single `Concoction` using a unique key. */
1185
+ deleteConcoctionById: (DeleteConcoctionPayload | null);
1053
1186
  /** Deletes a single `Consumable` using its globally unique id. */
1054
1187
  deleteConsumable: (DeleteConsumablePayload | null);
1055
1188
  /** Deletes a single `Consumable` using a unique key. */
@@ -1135,6 +1268,23 @@ export interface CreateClassPayload {
1135
1268
  classEdge: (ClassesEdge | null);
1136
1269
  __typename: 'CreateClassPayload';
1137
1270
  }
1271
+ /** The output of our create `Concoction` mutation. */
1272
+ export interface CreateConcoctionPayload {
1273
+ /**
1274
+ * The exact same `clientMutationId` that was provided in the mutation input,
1275
+ * unchanged and unused. May be used by a client to track mutations.
1276
+ */
1277
+ clientMutationId: (Scalars['String'] | null);
1278
+ /** The `Concoction` that was created by this mutation. */
1279
+ concoction: (Concoction | null);
1280
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1281
+ query: (Query | null);
1282
+ /** Reads a single `Item` that is related to this `Concoction`. */
1283
+ itemByItem: (Item | null);
1284
+ /** An edge for our `Concoction`. May be used by Relay 1. */
1285
+ concoctionEdge: (ConcoctionsEdge | null);
1286
+ __typename: 'CreateConcoctionPayload';
1287
+ }
1138
1288
  /** The output of our create `Consumable` mutation. */
1139
1289
  export interface CreateConsumablePayload {
1140
1290
  /**
@@ -1271,6 +1421,25 @@ export interface CreateFoldablePayload {
1271
1421
  foldableEdge: (FoldablesEdge | null);
1272
1422
  __typename: 'CreateFoldablePayload';
1273
1423
  }
1424
+ /** The output of our create `Ingredient` mutation. */
1425
+ export interface CreateIngredientPayload {
1426
+ /**
1427
+ * The exact same `clientMutationId` that was provided in the mutation input,
1428
+ * unchanged and unused. May be used by a client to track mutations.
1429
+ */
1430
+ clientMutationId: (Scalars['String'] | null);
1431
+ /** The `Ingredient` that was created by this mutation. */
1432
+ ingredient: (Ingredient | null);
1433
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1434
+ query: (Query | null);
1435
+ /** Reads a single `Concoction` that is related to this `Ingredient`. */
1436
+ concoctionByConcoction: (Concoction | null);
1437
+ /** Reads a single `Item` that is related to this `Ingredient`. */
1438
+ itemByItem: (Item | null);
1439
+ /** An edge for our `Ingredient`. May be used by Relay 1. */
1440
+ ingredientEdge: (IngredientsEdge | null);
1441
+ __typename: 'CreateIngredientPayload';
1442
+ }
1274
1443
  /** The output of our create `ItemModifier` mutation. */
1275
1444
  export interface CreateItemModifierPayload {
1276
1445
  /**
@@ -1367,6 +1536,25 @@ export interface CreateMonsterPayload {
1367
1536
  monsterEdge: (MonstersEdge | null);
1368
1537
  __typename: 'CreateMonsterPayload';
1369
1538
  }
1539
+ /** The output of our create `NativeMonster` mutation. */
1540
+ export interface CreateNativeMonsterPayload {
1541
+ /**
1542
+ * The exact same `clientMutationId` that was provided in the mutation input,
1543
+ * unchanged and unused. May be used by a client to track mutations.
1544
+ */
1545
+ clientMutationId: (Scalars['String'] | null);
1546
+ /** The `NativeMonster` that was created by this mutation. */
1547
+ nativeMonster: (NativeMonster | null);
1548
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1549
+ query: (Query | null);
1550
+ /** Reads a single `Location` that is related to this `NativeMonster`. */
1551
+ locationByLocation: (Location | null);
1552
+ /** Reads a single `Monster` that is related to this `NativeMonster`. */
1553
+ monsterByMonster: (Monster | null);
1554
+ /** An edge for our `NativeMonster`. May be used by Relay 1. */
1555
+ nativeMonsterEdge: (NativeMonstersEdge | null);
1556
+ __typename: 'CreateNativeMonsterPayload';
1557
+ }
1370
1558
  /** The output of our create `OutfitEquipment` mutation. */
1371
1559
  export interface CreateOutfitEquipmentPayload {
1372
1560
  /**
@@ -1484,6 +1672,23 @@ export interface UpdateClassPayload {
1484
1672
  classEdge: (ClassesEdge | null);
1485
1673
  __typename: 'UpdateClassPayload';
1486
1674
  }
1675
+ /** The output of our update `Concoction` mutation. */
1676
+ export interface UpdateConcoctionPayload {
1677
+ /**
1678
+ * The exact same `clientMutationId` that was provided in the mutation input,
1679
+ * unchanged and unused. May be used by a client to track mutations.
1680
+ */
1681
+ clientMutationId: (Scalars['String'] | null);
1682
+ /** The `Concoction` that was updated by this mutation. */
1683
+ concoction: (Concoction | null);
1684
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1685
+ query: (Query | null);
1686
+ /** Reads a single `Item` that is related to this `Concoction`. */
1687
+ itemByItem: (Item | null);
1688
+ /** An edge for our `Concoction`. May be used by Relay 1. */
1689
+ concoctionEdge: (ConcoctionsEdge | null);
1690
+ __typename: 'UpdateConcoctionPayload';
1691
+ }
1487
1692
  /** The output of our update `Consumable` mutation. */
1488
1693
  export interface UpdateConsumablePayload {
1489
1694
  /**
@@ -1743,6 +1948,24 @@ export interface DeleteClassPayload {
1743
1948
  classEdge: (ClassesEdge | null);
1744
1949
  __typename: 'DeleteClassPayload';
1745
1950
  }
1951
+ /** The output of our delete `Concoction` mutation. */
1952
+ export interface DeleteConcoctionPayload {
1953
+ /**
1954
+ * The exact same `clientMutationId` that was provided in the mutation input,
1955
+ * unchanged and unused. May be used by a client to track mutations.
1956
+ */
1957
+ clientMutationId: (Scalars['String'] | null);
1958
+ /** The `Concoction` that was deleted by this mutation. */
1959
+ concoction: (Concoction | null);
1960
+ deletedConcoctionId: (Scalars['ID'] | null);
1961
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
1962
+ query: (Query | null);
1963
+ /** Reads a single `Item` that is related to this `Concoction`. */
1964
+ itemByItem: (Item | null);
1965
+ /** An edge for our `Concoction`. May be used by Relay 1. */
1966
+ concoctionEdge: (ConcoctionsEdge | null);
1967
+ __typename: 'DeleteConcoctionPayload';
1968
+ }
1746
1969
  /** The output of our delete `Consumable` mutation. */
1747
1970
  export interface DeleteConsumablePayload {
1748
1971
  /**
@@ -2037,6 +2260,28 @@ export interface QueryGenqlSelection {
2037
2260
  condition?: (ClassCondition | null);
2038
2261
  };
2039
2262
  });
2263
+ /** Reads and enables pagination through a set of `Concoction`. */
2264
+ allConcoctions?: (ConcoctionsConnectionGenqlSelection & {
2265
+ __args?: {
2266
+ /** Only read the first `n` values of the set. */
2267
+ first?: (Scalars['Int'] | null);
2268
+ /** Only read the last `n` values of the set. */
2269
+ last?: (Scalars['Int'] | null);
2270
+ /**
2271
+ * Skip the first `n` values from our `after` cursor, an alternative to cursor
2272
+ * based pagination. May not be used with `last`.
2273
+ */
2274
+ offset?: (Scalars['Int'] | null);
2275
+ /** Read all values in the set before (above) this cursor. */
2276
+ before?: (Scalars['Cursor'] | null);
2277
+ /** Read all values in the set after (below) this cursor. */
2278
+ after?: (Scalars['Cursor'] | null);
2279
+ /** The method to use when ordering `Concoction`. */
2280
+ orderBy?: (ConcoctionsOrderBy[] | null);
2281
+ /** A condition to be used in determining which values should be returned by the collection. */
2282
+ condition?: (ConcoctionCondition | null);
2283
+ };
2284
+ });
2040
2285
  /** Reads and enables pagination through a set of `Consumable`. */
2041
2286
  allConsumables?: (ConsumablesConnectionGenqlSelection & {
2042
2287
  __args?: {
@@ -2213,6 +2458,28 @@ export interface QueryGenqlSelection {
2213
2458
  condition?: (FoldableCondition | null);
2214
2459
  };
2215
2460
  });
2461
+ /** Reads and enables pagination through a set of `Ingredient`. */
2462
+ allIngredients?: (IngredientsConnectionGenqlSelection & {
2463
+ __args?: {
2464
+ /** Only read the first `n` values of the set. */
2465
+ first?: (Scalars['Int'] | null);
2466
+ /** Only read the last `n` values of the set. */
2467
+ last?: (Scalars['Int'] | null);
2468
+ /**
2469
+ * Skip the first `n` values from our `after` cursor, an alternative to cursor
2470
+ * based pagination. May not be used with `last`.
2471
+ */
2472
+ offset?: (Scalars['Int'] | null);
2473
+ /** Read all values in the set before (above) this cursor. */
2474
+ before?: (Scalars['Cursor'] | null);
2475
+ /** Read all values in the set after (below) this cursor. */
2476
+ after?: (Scalars['Cursor'] | null);
2477
+ /** The method to use when ordering `Ingredient`. */
2478
+ orderBy?: (IngredientsOrderBy[] | null);
2479
+ /** A condition to be used in determining which values should be returned by the collection. */
2480
+ condition?: (IngredientCondition | null);
2481
+ };
2482
+ });
2216
2483
  /** Reads and enables pagination through a set of `ItemModifier`. */
2217
2484
  allItemModifiers?: (ItemModifiersConnectionGenqlSelection & {
2218
2485
  __args?: {
@@ -2345,6 +2612,28 @@ export interface QueryGenqlSelection {
2345
2612
  condition?: (MonsterCondition | null);
2346
2613
  };
2347
2614
  });
2615
+ /** Reads and enables pagination through a set of `NativeMonster`. */
2616
+ allNativeMonsters?: (NativeMonstersConnectionGenqlSelection & {
2617
+ __args?: {
2618
+ /** Only read the first `n` values of the set. */
2619
+ first?: (Scalars['Int'] | null);
2620
+ /** Only read the last `n` values of the set. */
2621
+ last?: (Scalars['Int'] | null);
2622
+ /**
2623
+ * Skip the first `n` values from our `after` cursor, an alternative to cursor
2624
+ * based pagination. May not be used with `last`.
2625
+ */
2626
+ offset?: (Scalars['Int'] | null);
2627
+ /** Read all values in the set before (above) this cursor. */
2628
+ before?: (Scalars['Cursor'] | null);
2629
+ /** Read all values in the set after (below) this cursor. */
2630
+ after?: (Scalars['Cursor'] | null);
2631
+ /** The method to use when ordering `NativeMonster`. */
2632
+ orderBy?: (NativeMonstersOrderBy[] | null);
2633
+ /** A condition to be used in determining which values should be returned by the collection. */
2634
+ condition?: (NativeMonsterCondition | null);
2635
+ };
2636
+ });
2348
2637
  /** Reads and enables pagination through a set of `OutfitEquipment`. */
2349
2638
  allOutfitEquipments?: (OutfitEquipmentsConnectionGenqlSelection & {
2350
2639
  __args?: {
@@ -2482,6 +2771,11 @@ export interface QueryGenqlSelection {
2482
2771
  id: Scalars['Int'];
2483
2772
  };
2484
2773
  });
2774
+ concoctionById?: (ConcoctionGenqlSelection & {
2775
+ __args: {
2776
+ id: Scalars['Int'];
2777
+ };
2778
+ });
2485
2779
  consumableById?: (ConsumableGenqlSelection & {
2486
2780
  __args: {
2487
2781
  id: Scalars['Int'];
@@ -2579,6 +2873,13 @@ export interface QueryGenqlSelection {
2579
2873
  nodeId: Scalars['ID'];
2580
2874
  };
2581
2875
  });
2876
+ /** Reads a single `Concoction` using its globally unique `ID`. */
2877
+ concoction?: (ConcoctionGenqlSelection & {
2878
+ __args: {
2879
+ /** The globally unique `ID` to be used in selecting a single `Concoction`. */
2880
+ nodeId: Scalars['ID'];
2881
+ };
2882
+ });
2582
2883
  /** Reads a single `Consumable` using its globally unique `ID`. */
2583
2884
  consumable?: (ConsumableGenqlSelection & {
2584
2885
  __args: {
@@ -2694,18 +2995,19 @@ export interface NodeGenqlSelection {
2694
2995
  on_Query?: QueryGenqlSelection;
2695
2996
  on_Class?: ClassGenqlSelection;
2696
2997
  on_Path?: PathGenqlSelection;
2697
- on_Consumable?: ConsumableGenqlSelection;
2998
+ on_Concoction?: ConcoctionGenqlSelection;
2698
2999
  on_Item?: ItemGenqlSelection;
2699
3000
  on_Equipment?: EquipmentGenqlSelection;
3001
+ on_Consumable?: ConsumableGenqlSelection;
2700
3002
  on_Familiar?: FamiliarGenqlSelection;
2701
3003
  on_FamiliarModifier?: FamiliarModifierGenqlSelection;
2702
3004
  on_Monster?: MonsterGenqlSelection;
3005
+ on_Location?: LocationGenqlSelection;
2703
3006
  on_Outfit?: OutfitGenqlSelection;
2704
3007
  on_FoldGroup?: FoldGroupGenqlSelection;
2705
3008
  on_ItemModifier?: ItemModifierGenqlSelection;
2706
3009
  on_EffectModifier?: EffectModifierGenqlSelection;
2707
3010
  on_Effect?: EffectGenqlSelection;
2708
- on_Location?: LocationGenqlSelection;
2709
3011
  on_SkillModifier?: SkillModifierGenqlSelection;
2710
3012
  on_Skill?: SkillGenqlSelection;
2711
3013
  __typename?: boolean | number;
@@ -2827,39 +3129,50 @@ export interface PageInfoGenqlSelection {
2827
3129
  __typename?: boolean | number;
2828
3130
  __scalar?: boolean | number;
2829
3131
  }
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;
3132
+ /** A connection to a list of `Concoction` values. */
3133
+ export interface ConcoctionsConnectionGenqlSelection {
3134
+ /** A list of `Concoction` objects. */
3135
+ nodes?: ConcoctionGenqlSelection;
3136
+ /** A list of edges which contains the `Concoction` and cursor to aid in pagination. */
3137
+ edges?: ConcoctionsEdgeGenqlSelection;
2836
3138
  /** Information to aid in pagination. */
2837
3139
  pageInfo?: PageInfoGenqlSelection;
2838
- /** The count of *all* `Consumable` you could get from the connection. */
3140
+ /** The count of *all* `Concoction` you could get from the connection. */
2839
3141
  totalCount?: boolean | number;
2840
3142
  __typename?: boolean | number;
2841
3143
  __scalar?: boolean | number;
2842
3144
  }
2843
- export interface ConsumableGenqlSelection {
3145
+ export interface ConcoctionGenqlSelection {
2844
3146
  /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
2845
3147
  nodeId?: boolean | number;
2846
3148
  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;
3149
+ item?: boolean | number;
3150
+ methods?: boolean | number;
3151
+ comment?: boolean | number;
3152
+ /** Reads a single `Item` that is related to this `Concoction`. */
3153
+ itemByItem?: ItemGenqlSelection;
3154
+ /** Reads and enables pagination through a set of `Ingredient`. */
3155
+ ingredientsByConcoction?: (IngredientsConnectionGenqlSelection & {
3156
+ __args?: {
3157
+ /** Only read the first `n` values of the set. */
3158
+ first?: (Scalars['Int'] | null);
3159
+ /** Only read the last `n` values of the set. */
3160
+ last?: (Scalars['Int'] | null);
3161
+ /**
3162
+ * Skip the first `n` values from our `after` cursor, an alternative to cursor
3163
+ * based pagination. May not be used with `last`.
3164
+ */
3165
+ offset?: (Scalars['Int'] | null);
3166
+ /** Read all values in the set before (above) this cursor. */
3167
+ before?: (Scalars['Cursor'] | null);
3168
+ /** Read all values in the set after (below) this cursor. */
3169
+ after?: (Scalars['Cursor'] | null);
3170
+ /** The method to use when ordering `Ingredient`. */
3171
+ orderBy?: (IngredientsOrderBy[] | null);
3172
+ /** A condition to be used in determining which values should be returned by the collection. */
3173
+ condition?: (IngredientCondition | null);
3174
+ };
3175
+ });
2863
3176
  __typename?: boolean | number;
2864
3177
  __scalar?: boolean | number;
2865
3178
  }
@@ -3016,6 +3329,50 @@ export interface ItemGenqlSelection {
3016
3329
  });
3017
3330
  /** Reads a single `ItemModifier` that is related to this `Item`. */
3018
3331
  itemModifierByItem?: ItemModifierGenqlSelection;
3332
+ /** Reads and enables pagination through a set of `Concoction`. */
3333
+ concoctionsByItem?: (ConcoctionsConnectionGenqlSelection & {
3334
+ __args?: {
3335
+ /** Only read the first `n` values of the set. */
3336
+ first?: (Scalars['Int'] | null);
3337
+ /** Only read the last `n` values of the set. */
3338
+ last?: (Scalars['Int'] | null);
3339
+ /**
3340
+ * Skip the first `n` values from our `after` cursor, an alternative to cursor
3341
+ * based pagination. May not be used with `last`.
3342
+ */
3343
+ offset?: (Scalars['Int'] | null);
3344
+ /** Read all values in the set before (above) this cursor. */
3345
+ before?: (Scalars['Cursor'] | null);
3346
+ /** Read all values in the set after (below) this cursor. */
3347
+ after?: (Scalars['Cursor'] | null);
3348
+ /** The method to use when ordering `Concoction`. */
3349
+ orderBy?: (ConcoctionsOrderBy[] | null);
3350
+ /** A condition to be used in determining which values should be returned by the collection. */
3351
+ condition?: (ConcoctionCondition | null);
3352
+ };
3353
+ });
3354
+ /** Reads and enables pagination through a set of `Ingredient`. */
3355
+ ingredientsByItem?: (IngredientsConnectionGenqlSelection & {
3356
+ __args?: {
3357
+ /** Only read the first `n` values of the set. */
3358
+ first?: (Scalars['Int'] | null);
3359
+ /** Only read the last `n` values of the set. */
3360
+ last?: (Scalars['Int'] | null);
3361
+ /**
3362
+ * Skip the first `n` values from our `after` cursor, an alternative to cursor
3363
+ * based pagination. May not be used with `last`.
3364
+ */
3365
+ offset?: (Scalars['Int'] | null);
3366
+ /** Read all values in the set before (above) this cursor. */
3367
+ before?: (Scalars['Cursor'] | null);
3368
+ /** Read all values in the set after (below) this cursor. */
3369
+ after?: (Scalars['Cursor'] | null);
3370
+ /** The method to use when ordering `Ingredient`. */
3371
+ orderBy?: (IngredientsOrderBy[] | null);
3372
+ /** A condition to be used in determining which values should be returned by the collection. */
3373
+ condition?: (IngredientCondition | null);
3374
+ };
3375
+ });
3019
3376
  __typename?: boolean | number;
3020
3377
  __scalar?: boolean | number;
3021
3378
  }
@@ -3034,6 +3391,29 @@ export interface EquipmentGenqlSelection {
3034
3391
  __typename?: boolean | number;
3035
3392
  __scalar?: boolean | number;
3036
3393
  }
3394
+ export interface ConsumableGenqlSelection {
3395
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
3396
+ nodeId?: boolean | number;
3397
+ id?: boolean | number;
3398
+ stomach?: boolean | number;
3399
+ liver?: boolean | number;
3400
+ spleen?: boolean | number;
3401
+ levelRequirement?: boolean | number;
3402
+ quality?: boolean | number;
3403
+ adventureRange?: boolean | number;
3404
+ adventures?: boolean | number;
3405
+ muscle?: boolean | number;
3406
+ muscleRange?: boolean | number;
3407
+ mysticality?: boolean | number;
3408
+ mysticalityRange?: boolean | number;
3409
+ moxie?: boolean | number;
3410
+ moxieRange?: boolean | number;
3411
+ notes?: boolean | number;
3412
+ /** Reads a single `Item` that is related to this `Consumable`. */
3413
+ itemById?: ItemGenqlSelection;
3414
+ __typename?: boolean | number;
3415
+ __scalar?: boolean | number;
3416
+ }
3037
3417
  /** A connection to a list of `Familiar` values. */
3038
3418
  export interface FamiliarsConnectionGenqlSelection {
3039
3419
  /** A list of `Familiar` objects. */
@@ -3212,6 +3592,28 @@ export interface MonsterGenqlSelection {
3212
3592
  condition?: (MonsterDropCondition | null);
3213
3593
  };
3214
3594
  });
3595
+ /** Reads and enables pagination through a set of `NativeMonster`. */
3596
+ nativeMonstersByMonster?: (NativeMonstersConnectionGenqlSelection & {
3597
+ __args?: {
3598
+ /** Only read the first `n` values of the set. */
3599
+ first?: (Scalars['Int'] | null);
3600
+ /** Only read the last `n` values of the set. */
3601
+ last?: (Scalars['Int'] | null);
3602
+ /**
3603
+ * Skip the first `n` values from our `after` cursor, an alternative to cursor
3604
+ * based pagination. May not be used with `last`.
3605
+ */
3606
+ offset?: (Scalars['Int'] | null);
3607
+ /** Read all values in the set before (above) this cursor. */
3608
+ before?: (Scalars['Cursor'] | null);
3609
+ /** Read all values in the set after (below) this cursor. */
3610
+ after?: (Scalars['Cursor'] | null);
3611
+ /** The method to use when ordering `NativeMonster`. */
3612
+ orderBy?: (NativeMonstersOrderBy[] | null);
3613
+ /** A condition to be used in determining which values should be returned by the collection. */
3614
+ condition?: (NativeMonsterCondition | null);
3615
+ };
3616
+ });
3215
3617
  __typename?: boolean | number;
3216
3618
  __scalar?: boolean | number;
3217
3619
  }
@@ -3229,6 +3631,96 @@ export interface MonsterDropCondition {
3229
3631
  /** Checks for equality with the object’s `category` field. */
3230
3632
  category?: (MonsterDropCategory | null);
3231
3633
  }
3634
+ /** A connection to a list of `NativeMonster` values. */
3635
+ export interface NativeMonstersConnectionGenqlSelection {
3636
+ /** A list of `NativeMonster` objects. */
3637
+ nodes?: NativeMonsterGenqlSelection;
3638
+ /** A list of edges which contains the `NativeMonster` and cursor to aid in pagination. */
3639
+ edges?: NativeMonstersEdgeGenqlSelection;
3640
+ /** Information to aid in pagination. */
3641
+ pageInfo?: PageInfoGenqlSelection;
3642
+ /** The count of *all* `NativeMonster` you could get from the connection. */
3643
+ totalCount?: boolean | number;
3644
+ __typename?: boolean | number;
3645
+ __scalar?: boolean | number;
3646
+ }
3647
+ export interface NativeMonsterGenqlSelection {
3648
+ location?: boolean | number;
3649
+ monster?: boolean | number;
3650
+ weight?: boolean | number;
3651
+ rejection?: boolean | number;
3652
+ parity?: boolean | number;
3653
+ /** Reads a single `Location` that is related to this `NativeMonster`. */
3654
+ locationByLocation?: LocationGenqlSelection;
3655
+ /** Reads a single `Monster` that is related to this `NativeMonster`. */
3656
+ monsterByMonster?: MonsterGenqlSelection;
3657
+ __typename?: boolean | number;
3658
+ __scalar?: boolean | number;
3659
+ }
3660
+ export interface LocationGenqlSelection {
3661
+ /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
3662
+ nodeId?: boolean | number;
3663
+ id?: boolean | number;
3664
+ name?: boolean | number;
3665
+ zone?: boolean | number;
3666
+ url?: boolean | number;
3667
+ difficulty?: boolean | number;
3668
+ environment?: boolean | number;
3669
+ statRequirement?: boolean | number;
3670
+ waterLevel?: boolean | number;
3671
+ overdrunk?: boolean | number;
3672
+ nowander?: boolean | number;
3673
+ combatRate?: boolean | number;
3674
+ /** Reads and enables pagination through a set of `NativeMonster`. */
3675
+ nativeMonstersByLocation?: (NativeMonstersConnectionGenqlSelection & {
3676
+ __args?: {
3677
+ /** Only read the first `n` values of the set. */
3678
+ first?: (Scalars['Int'] | null);
3679
+ /** Only read the last `n` values of the set. */
3680
+ last?: (Scalars['Int'] | null);
3681
+ /**
3682
+ * Skip the first `n` values from our `after` cursor, an alternative to cursor
3683
+ * based pagination. May not be used with `last`.
3684
+ */
3685
+ offset?: (Scalars['Int'] | null);
3686
+ /** Read all values in the set before (above) this cursor. */
3687
+ before?: (Scalars['Cursor'] | null);
3688
+ /** Read all values in the set after (below) this cursor. */
3689
+ after?: (Scalars['Cursor'] | null);
3690
+ /** The method to use when ordering `NativeMonster`. */
3691
+ orderBy?: (NativeMonstersOrderBy[] | null);
3692
+ /** A condition to be used in determining which values should be returned by the collection. */
3693
+ condition?: (NativeMonsterCondition | null);
3694
+ };
3695
+ });
3696
+ __typename?: boolean | number;
3697
+ __scalar?: boolean | number;
3698
+ }
3699
+ /**
3700
+ * A condition to be used against `NativeMonster` object types. All fields are
3701
+ * tested for equality and combined with a logical ‘and.’
3702
+ */
3703
+ export interface NativeMonsterCondition {
3704
+ /** Checks for equality with the object’s `location` field. */
3705
+ location?: (Scalars['String'] | null);
3706
+ /** Checks for equality with the object’s `monster` field. */
3707
+ monster?: (Scalars['Int'] | null);
3708
+ /** Checks for equality with the object’s `weight` field. */
3709
+ weight?: (Scalars['Float'] | null);
3710
+ /** Checks for equality with the object’s `rejection` field. */
3711
+ rejection?: (Scalars['Float'] | null);
3712
+ /** Checks for equality with the object’s `parity` field. */
3713
+ parity?: (Scalars['Int'] | null);
3714
+ }
3715
+ /** A `NativeMonster` edge in the connection. */
3716
+ export interface NativeMonstersEdgeGenqlSelection {
3717
+ /** A cursor for use in pagination. */
3718
+ cursor?: boolean | number;
3719
+ /** The `NativeMonster` at the end of the edge. */
3720
+ node?: NativeMonsterGenqlSelection;
3721
+ __typename?: boolean | number;
3722
+ __scalar?: boolean | number;
3723
+ }
3232
3724
  /** A `MonsterDrop` edge in the connection. */
3233
3725
  export interface MonsterDropsEdgeGenqlSelection {
3234
3726
  /** A cursor for use in pagination. */
@@ -3460,6 +3952,87 @@ export interface ItemModifierGenqlSelection {
3460
3952
  __typename?: boolean | number;
3461
3953
  __scalar?: boolean | number;
3462
3954
  }
3955
+ /**
3956
+ * A condition to be used against `Concoction` object types. All fields are tested
3957
+ * for equality and combined with a logical ‘and.’
3958
+ */
3959
+ export interface ConcoctionCondition {
3960
+ /** Checks for equality with the object’s `id` field. */
3961
+ id?: (Scalars['Int'] | null);
3962
+ /** Checks for equality with the object’s `item` field. */
3963
+ item?: (Scalars['Int'] | null);
3964
+ /** Checks for equality with the object’s `methods` field. */
3965
+ methods?: ((Scalars['String'] | null)[] | null);
3966
+ /** Checks for equality with the object’s `comment` field. */
3967
+ comment?: (Scalars['String'] | null);
3968
+ }
3969
+ /** A connection to a list of `Ingredient` values. */
3970
+ export interface IngredientsConnectionGenqlSelection {
3971
+ /** A list of `Ingredient` objects. */
3972
+ nodes?: IngredientGenqlSelection;
3973
+ /** A list of edges which contains the `Ingredient` and cursor to aid in pagination. */
3974
+ edges?: IngredientsEdgeGenqlSelection;
3975
+ /** Information to aid in pagination. */
3976
+ pageInfo?: PageInfoGenqlSelection;
3977
+ /** The count of *all* `Ingredient` you could get from the connection. */
3978
+ totalCount?: boolean | number;
3979
+ __typename?: boolean | number;
3980
+ __scalar?: boolean | number;
3981
+ }
3982
+ export interface IngredientGenqlSelection {
3983
+ concoction?: boolean | number;
3984
+ item?: boolean | number;
3985
+ quantity?: boolean | number;
3986
+ /** Reads a single `Concoction` that is related to this `Ingredient`. */
3987
+ concoctionByConcoction?: ConcoctionGenqlSelection;
3988
+ /** Reads a single `Item` that is related to this `Ingredient`. */
3989
+ itemByItem?: ItemGenqlSelection;
3990
+ __typename?: boolean | number;
3991
+ __scalar?: boolean | number;
3992
+ }
3993
+ /** A `Ingredient` edge in the connection. */
3994
+ export interface IngredientsEdgeGenqlSelection {
3995
+ /** A cursor for use in pagination. */
3996
+ cursor?: boolean | number;
3997
+ /** The `Ingredient` at the end of the edge. */
3998
+ node?: IngredientGenqlSelection;
3999
+ __typename?: boolean | number;
4000
+ __scalar?: boolean | number;
4001
+ }
4002
+ /**
4003
+ * A condition to be used against `Ingredient` object types. All fields are tested
4004
+ * for equality and combined with a logical ‘and.’
4005
+ */
4006
+ export interface IngredientCondition {
4007
+ /** Checks for equality with the object’s `concoction` field. */
4008
+ concoction?: (Scalars['Int'] | null);
4009
+ /** Checks for equality with the object’s `item` field. */
4010
+ item?: (Scalars['Int'] | null);
4011
+ /** Checks for equality with the object’s `quantity` field. */
4012
+ quantity?: (Scalars['Int'] | null);
4013
+ }
4014
+ /** A `Concoction` edge in the connection. */
4015
+ export interface ConcoctionsEdgeGenqlSelection {
4016
+ /** A cursor for use in pagination. */
4017
+ cursor?: boolean | number;
4018
+ /** The `Concoction` at the end of the edge. */
4019
+ node?: ConcoctionGenqlSelection;
4020
+ __typename?: boolean | number;
4021
+ __scalar?: boolean | number;
4022
+ }
4023
+ /** A connection to a list of `Consumable` values. */
4024
+ export interface ConsumablesConnectionGenqlSelection {
4025
+ /** A list of `Consumable` objects. */
4026
+ nodes?: ConsumableGenqlSelection;
4027
+ /** A list of edges which contains the `Consumable` and cursor to aid in pagination. */
4028
+ edges?: ConsumablesEdgeGenqlSelection;
4029
+ /** Information to aid in pagination. */
4030
+ pageInfo?: PageInfoGenqlSelection;
4031
+ /** The count of *all* `Consumable` you could get from the connection. */
4032
+ totalCount?: boolean | number;
4033
+ __typename?: boolean | number;
4034
+ __scalar?: boolean | number;
4035
+ }
3463
4036
  /** A `Consumable` edge in the connection. */
3464
4037
  export interface ConsumablesEdgeGenqlSelection {
3465
4038
  /** A cursor for use in pagination. */
@@ -3813,22 +4386,6 @@ export interface LocationsConnectionGenqlSelection {
3813
4386
  __typename?: boolean | number;
3814
4387
  __scalar?: boolean | number;
3815
4388
  }
3816
- export interface LocationGenqlSelection {
3817
- /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
3818
- nodeId?: boolean | number;
3819
- id?: boolean | number;
3820
- name?: boolean | number;
3821
- zone?: boolean | number;
3822
- url?: boolean | number;
3823
- difficulty?: boolean | number;
3824
- environment?: boolean | number;
3825
- statRequirement?: boolean | number;
3826
- waterLevel?: boolean | number;
3827
- overdrunk?: boolean | number;
3828
- nowander?: boolean | number;
3829
- __typename?: boolean | number;
3830
- __scalar?: boolean | number;
3831
- }
3832
4389
  /** A `Location` edge in the connection. */
3833
4390
  export interface LocationsEdgeGenqlSelection {
3834
4391
  /** A cursor for use in pagination. */
@@ -3863,6 +4420,8 @@ export interface LocationCondition {
3863
4420
  overdrunk?: (Scalars['Boolean'] | null);
3864
4421
  /** Checks for equality with the object’s `nowander` field. */
3865
4422
  nowander?: (Scalars['Boolean'] | null);
4423
+ /** Checks for equality with the object’s `combatRate` field. */
4424
+ combatRate?: (Scalars['Int'] | null);
3866
4425
  }
3867
4426
  /** A connection to a list of `Meta` values. */
3868
4427
  export interface MetasConnectionGenqlSelection {
@@ -4205,6 +4764,13 @@ export interface MutationGenqlSelection {
4205
4764
  input: CreateClassInput;
4206
4765
  };
4207
4766
  });
4767
+ /** Creates a single `Concoction`. */
4768
+ createConcoction?: (CreateConcoctionPayloadGenqlSelection & {
4769
+ __args: {
4770
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4771
+ input: CreateConcoctionInput;
4772
+ };
4773
+ });
4208
4774
  /** Creates a single `Consumable`. */
4209
4775
  createConsumable?: (CreateConsumablePayloadGenqlSelection & {
4210
4776
  __args: {
@@ -4261,6 +4827,13 @@ export interface MutationGenqlSelection {
4261
4827
  input: CreateFoldableInput;
4262
4828
  };
4263
4829
  });
4830
+ /** Creates a single `Ingredient`. */
4831
+ createIngredient?: (CreateIngredientPayloadGenqlSelection & {
4832
+ __args: {
4833
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4834
+ input: CreateIngredientInput;
4835
+ };
4836
+ });
4264
4837
  /** Creates a single `ItemModifier`. */
4265
4838
  createItemModifier?: (CreateItemModifierPayloadGenqlSelection & {
4266
4839
  __args: {
@@ -4303,6 +4876,13 @@ export interface MutationGenqlSelection {
4303
4876
  input: CreateMonsterInput;
4304
4877
  };
4305
4878
  });
4879
+ /** Creates a single `NativeMonster`. */
4880
+ createNativeMonster?: (CreateNativeMonsterPayloadGenqlSelection & {
4881
+ __args: {
4882
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4883
+ input: CreateNativeMonsterInput;
4884
+ };
4885
+ });
4306
4886
  /** Creates a single `OutfitEquipment`. */
4307
4887
  createOutfitEquipment?: (CreateOutfitEquipmentPayloadGenqlSelection & {
4308
4888
  __args: {
@@ -4359,6 +4939,20 @@ export interface MutationGenqlSelection {
4359
4939
  input: UpdateClassByIdInput;
4360
4940
  };
4361
4941
  });
4942
+ /** Updates a single `Concoction` using its globally unique id and a patch. */
4943
+ updateConcoction?: (UpdateConcoctionPayloadGenqlSelection & {
4944
+ __args: {
4945
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4946
+ input: UpdateConcoctionInput;
4947
+ };
4948
+ });
4949
+ /** Updates a single `Concoction` using a unique key and a patch. */
4950
+ updateConcoctionById?: (UpdateConcoctionPayloadGenqlSelection & {
4951
+ __args: {
4952
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
4953
+ input: UpdateConcoctionByIdInput;
4954
+ };
4955
+ });
4362
4956
  /** Updates a single `Consumable` using its globally unique id and a patch. */
4363
4957
  updateConsumable?: (UpdateConsumablePayloadGenqlSelection & {
4364
4958
  __args: {
@@ -4604,6 +5198,20 @@ export interface MutationGenqlSelection {
4604
5198
  input: DeleteClassByIdInput;
4605
5199
  };
4606
5200
  });
5201
+ /** Deletes a single `Concoction` using its globally unique id. */
5202
+ deleteConcoction?: (DeleteConcoctionPayloadGenqlSelection & {
5203
+ __args: {
5204
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
5205
+ input: DeleteConcoctionInput;
5206
+ };
5207
+ });
5208
+ /** Deletes a single `Concoction` using a unique key. */
5209
+ deleteConcoctionById?: (DeleteConcoctionPayloadGenqlSelection & {
5210
+ __args: {
5211
+ /** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
5212
+ input: DeleteConcoctionByIdInput;
5213
+ };
5214
+ });
4607
5215
  /** Deletes a single `Consumable` using its globally unique id. */
4608
5216
  deleteConsumable?: (DeleteConsumablePayloadGenqlSelection & {
4609
5217
  __args: {
@@ -4884,6 +5492,46 @@ export interface ClassInput {
4884
5492
  liverCapacity?: (Scalars['Int'] | null);
4885
5493
  spleenCapacity?: (Scalars['Int'] | null);
4886
5494
  }
5495
+ /** The output of our create `Concoction` mutation. */
5496
+ export interface CreateConcoctionPayloadGenqlSelection {
5497
+ /**
5498
+ * The exact same `clientMutationId` that was provided in the mutation input,
5499
+ * unchanged and unused. May be used by a client to track mutations.
5500
+ */
5501
+ clientMutationId?: boolean | number;
5502
+ /** The `Concoction` that was created by this mutation. */
5503
+ concoction?: ConcoctionGenqlSelection;
5504
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
5505
+ query?: QueryGenqlSelection;
5506
+ /** Reads a single `Item` that is related to this `Concoction`. */
5507
+ itemByItem?: ItemGenqlSelection;
5508
+ /** An edge for our `Concoction`. May be used by Relay 1. */
5509
+ concoctionEdge?: (ConcoctionsEdgeGenqlSelection & {
5510
+ __args?: {
5511
+ /** The method to use when ordering `Concoction`. */
5512
+ orderBy?: (ConcoctionsOrderBy[] | null);
5513
+ };
5514
+ });
5515
+ __typename?: boolean | number;
5516
+ __scalar?: boolean | number;
5517
+ }
5518
+ /** All input for the create `Concoction` mutation. */
5519
+ export interface CreateConcoctionInput {
5520
+ /**
5521
+ * An arbitrary string value with no semantic meaning. Will be included in the
5522
+ * payload verbatim. May be used to track mutations by the client.
5523
+ */
5524
+ clientMutationId?: (Scalars['String'] | null);
5525
+ /** The `Concoction` to be created by this mutation. */
5526
+ concoction: ConcoctionInput;
5527
+ }
5528
+ /** An input for mutations affecting `Concoction` */
5529
+ export interface ConcoctionInput {
5530
+ id: Scalars['Int'];
5531
+ item: Scalars['Int'];
5532
+ methods: (Scalars['String'] | null)[];
5533
+ comment?: (Scalars['String'] | null);
5534
+ }
4887
5535
  /** The output of our create `Consumable` mutation. */
4888
5536
  export interface CreateConsumablePayloadGenqlSelection {
4889
5537
  /**
@@ -5224,6 +5872,47 @@ export interface FoldableInput {
5224
5872
  foldGroup?: (Scalars['Int'] | null);
5225
5873
  item?: (Scalars['Int'] | null);
5226
5874
  }
5875
+ /** The output of our create `Ingredient` mutation. */
5876
+ export interface CreateIngredientPayloadGenqlSelection {
5877
+ /**
5878
+ * The exact same `clientMutationId` that was provided in the mutation input,
5879
+ * unchanged and unused. May be used by a client to track mutations.
5880
+ */
5881
+ clientMutationId?: boolean | number;
5882
+ /** The `Ingredient` that was created by this mutation. */
5883
+ ingredient?: IngredientGenqlSelection;
5884
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
5885
+ query?: QueryGenqlSelection;
5886
+ /** Reads a single `Concoction` that is related to this `Ingredient`. */
5887
+ concoctionByConcoction?: ConcoctionGenqlSelection;
5888
+ /** Reads a single `Item` that is related to this `Ingredient`. */
5889
+ itemByItem?: ItemGenqlSelection;
5890
+ /** An edge for our `Ingredient`. May be used by Relay 1. */
5891
+ ingredientEdge?: (IngredientsEdgeGenqlSelection & {
5892
+ __args?: {
5893
+ /** The method to use when ordering `Ingredient`. */
5894
+ orderBy?: (IngredientsOrderBy[] | null);
5895
+ };
5896
+ });
5897
+ __typename?: boolean | number;
5898
+ __scalar?: boolean | number;
5899
+ }
5900
+ /** All input for the create `Ingredient` mutation. */
5901
+ export interface CreateIngredientInput {
5902
+ /**
5903
+ * An arbitrary string value with no semantic meaning. Will be included in the
5904
+ * payload verbatim. May be used to track mutations by the client.
5905
+ */
5906
+ clientMutationId?: (Scalars['String'] | null);
5907
+ /** The `Ingredient` to be created by this mutation. */
5908
+ ingredient: IngredientInput;
5909
+ }
5910
+ /** An input for mutations affecting `Ingredient` */
5911
+ export interface IngredientInput {
5912
+ concoction?: (Scalars['Int'] | null);
5913
+ item?: (Scalars['Int'] | null);
5914
+ quantity: Scalars['Int'];
5915
+ }
5227
5916
  /** The output of our create `ItemModifier` mutation. */
5228
5917
  export interface CreateItemModifierPayloadGenqlSelection {
5229
5918
  /**
@@ -5351,6 +6040,7 @@ export interface LocationInput {
5351
6040
  waterLevel?: (Scalars['Int'] | null);
5352
6041
  overdrunk: Scalars['Boolean'];
5353
6042
  nowander: Scalars['Boolean'];
6043
+ combatRate: Scalars['Int'];
5354
6044
  }
5355
6045
  /** The output of our create `Meta` mutation. */
5356
6046
  export interface CreateMetaPayloadGenqlSelection {
@@ -5508,6 +6198,49 @@ export interface MonsterInput {
5508
6198
  wiki?: (Scalars['String'] | null);
5509
6199
  wish: Scalars['Boolean'];
5510
6200
  }
6201
+ /** The output of our create `NativeMonster` mutation. */
6202
+ export interface CreateNativeMonsterPayloadGenqlSelection {
6203
+ /**
6204
+ * The exact same `clientMutationId` that was provided in the mutation input,
6205
+ * unchanged and unused. May be used by a client to track mutations.
6206
+ */
6207
+ clientMutationId?: boolean | number;
6208
+ /** The `NativeMonster` that was created by this mutation. */
6209
+ nativeMonster?: NativeMonsterGenqlSelection;
6210
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
6211
+ query?: QueryGenqlSelection;
6212
+ /** Reads a single `Location` that is related to this `NativeMonster`. */
6213
+ locationByLocation?: LocationGenqlSelection;
6214
+ /** Reads a single `Monster` that is related to this `NativeMonster`. */
6215
+ monsterByMonster?: MonsterGenqlSelection;
6216
+ /** An edge for our `NativeMonster`. May be used by Relay 1. */
6217
+ nativeMonsterEdge?: (NativeMonstersEdgeGenqlSelection & {
6218
+ __args?: {
6219
+ /** The method to use when ordering `NativeMonster`. */
6220
+ orderBy?: (NativeMonstersOrderBy[] | null);
6221
+ };
6222
+ });
6223
+ __typename?: boolean | number;
6224
+ __scalar?: boolean | number;
6225
+ }
6226
+ /** All input for the create `NativeMonster` mutation. */
6227
+ export interface CreateNativeMonsterInput {
6228
+ /**
6229
+ * An arbitrary string value with no semantic meaning. Will be included in the
6230
+ * payload verbatim. May be used to track mutations by the client.
6231
+ */
6232
+ clientMutationId?: (Scalars['String'] | null);
6233
+ /** The `NativeMonster` to be created by this mutation. */
6234
+ nativeMonster: NativeMonsterInput;
6235
+ }
6236
+ /** An input for mutations affecting `NativeMonster` */
6237
+ export interface NativeMonsterInput {
6238
+ location: Scalars['String'];
6239
+ monster: Scalars['Int'];
6240
+ weight: Scalars['Float'];
6241
+ rejection: Scalars['Float'];
6242
+ parity?: (Scalars['Int'] | null);
6243
+ }
5511
6244
  /** The output of our create `OutfitEquipment` mutation. */
5512
6245
  export interface CreateOutfitEquipmentPayloadGenqlSelection {
5513
6246
  /**
@@ -5813,6 +6546,59 @@ export interface UpdateClassByIdInput {
5813
6546
  classPatch: ClassPatch;
5814
6547
  id: Scalars['Int'];
5815
6548
  }
6549
+ /** The output of our update `Concoction` mutation. */
6550
+ export interface UpdateConcoctionPayloadGenqlSelection {
6551
+ /**
6552
+ * The exact same `clientMutationId` that was provided in the mutation input,
6553
+ * unchanged and unused. May be used by a client to track mutations.
6554
+ */
6555
+ clientMutationId?: boolean | number;
6556
+ /** The `Concoction` that was updated by this mutation. */
6557
+ concoction?: ConcoctionGenqlSelection;
6558
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
6559
+ query?: QueryGenqlSelection;
6560
+ /** Reads a single `Item` that is related to this `Concoction`. */
6561
+ itemByItem?: ItemGenqlSelection;
6562
+ /** An edge for our `Concoction`. May be used by Relay 1. */
6563
+ concoctionEdge?: (ConcoctionsEdgeGenqlSelection & {
6564
+ __args?: {
6565
+ /** The method to use when ordering `Concoction`. */
6566
+ orderBy?: (ConcoctionsOrderBy[] | null);
6567
+ };
6568
+ });
6569
+ __typename?: boolean | number;
6570
+ __scalar?: boolean | number;
6571
+ }
6572
+ /** All input for the `updateConcoction` mutation. */
6573
+ export interface UpdateConcoctionInput {
6574
+ /**
6575
+ * An arbitrary string value with no semantic meaning. Will be included in the
6576
+ * payload verbatim. May be used to track mutations by the client.
6577
+ */
6578
+ clientMutationId?: (Scalars['String'] | null);
6579
+ /** The globally unique `ID` which will identify a single `Concoction` to be updated. */
6580
+ nodeId: Scalars['ID'];
6581
+ /** An object where the defined keys will be set on the `Concoction` being updated. */
6582
+ concoctionPatch: ConcoctionPatch;
6583
+ }
6584
+ /** Represents an update to a `Concoction`. Fields that are set will be updated. */
6585
+ export interface ConcoctionPatch {
6586
+ id?: (Scalars['Int'] | null);
6587
+ item?: (Scalars['Int'] | null);
6588
+ methods?: ((Scalars['String'] | null)[] | null);
6589
+ comment?: (Scalars['String'] | null);
6590
+ }
6591
+ /** All input for the `updateConcoctionById` mutation. */
6592
+ export interface UpdateConcoctionByIdInput {
6593
+ /**
6594
+ * An arbitrary string value with no semantic meaning. Will be included in the
6595
+ * payload verbatim. May be used to track mutations by the client.
6596
+ */
6597
+ clientMutationId?: (Scalars['String'] | null);
6598
+ /** An object where the defined keys will be set on the `Concoction` being updated. */
6599
+ concoctionPatch: ConcoctionPatch;
6600
+ id: Scalars['Int'];
6601
+ }
5816
6602
  /** The output of our update `Consumable` mutation. */
5817
6603
  export interface UpdateConsumablePayloadGenqlSelection {
5818
6604
  /**
@@ -6381,6 +7167,7 @@ export interface LocationPatch {
6381
7167
  waterLevel?: (Scalars['Int'] | null);
6382
7168
  overdrunk?: (Scalars['Boolean'] | null);
6383
7169
  nowander?: (Scalars['Boolean'] | null);
7170
+ combatRate?: (Scalars['Int'] | null);
6384
7171
  }
6385
7172
  /** All input for the `updateLocationByName` mutation. */
6386
7173
  export interface UpdateLocationByNameInput {
@@ -6756,6 +7543,49 @@ export interface DeleteClassByIdInput {
6756
7543
  clientMutationId?: (Scalars['String'] | null);
6757
7544
  id: Scalars['Int'];
6758
7545
  }
7546
+ /** The output of our delete `Concoction` mutation. */
7547
+ export interface DeleteConcoctionPayloadGenqlSelection {
7548
+ /**
7549
+ * The exact same `clientMutationId` that was provided in the mutation input,
7550
+ * unchanged and unused. May be used by a client to track mutations.
7551
+ */
7552
+ clientMutationId?: boolean | number;
7553
+ /** The `Concoction` that was deleted by this mutation. */
7554
+ concoction?: ConcoctionGenqlSelection;
7555
+ deletedConcoctionId?: boolean | number;
7556
+ /** Our root query field type. Allows us to run any query from our mutation payload. */
7557
+ query?: QueryGenqlSelection;
7558
+ /** Reads a single `Item` that is related to this `Concoction`. */
7559
+ itemByItem?: ItemGenqlSelection;
7560
+ /** An edge for our `Concoction`. May be used by Relay 1. */
7561
+ concoctionEdge?: (ConcoctionsEdgeGenqlSelection & {
7562
+ __args?: {
7563
+ /** The method to use when ordering `Concoction`. */
7564
+ orderBy?: (ConcoctionsOrderBy[] | null);
7565
+ };
7566
+ });
7567
+ __typename?: boolean | number;
7568
+ __scalar?: boolean | number;
7569
+ }
7570
+ /** All input for the `deleteConcoction` mutation. */
7571
+ export interface DeleteConcoctionInput {
7572
+ /**
7573
+ * An arbitrary string value with no semantic meaning. Will be included in the
7574
+ * payload verbatim. May be used to track mutations by the client.
7575
+ */
7576
+ clientMutationId?: (Scalars['String'] | null);
7577
+ /** The globally unique `ID` which will identify a single `Concoction` to be deleted. */
7578
+ nodeId: Scalars['ID'];
7579
+ }
7580
+ /** All input for the `deleteConcoctionById` mutation. */
7581
+ export interface DeleteConcoctionByIdInput {
7582
+ /**
7583
+ * An arbitrary string value with no semantic meaning. Will be included in the
7584
+ * payload verbatim. May be used to track mutations by the client.
7585
+ */
7586
+ clientMutationId?: (Scalars['String'] | null);
7587
+ id: Scalars['Int'];
7588
+ }
6759
7589
  /** The output of our delete `Consumable` mutation. */
6760
7590
  export interface DeleteConsumablePayloadGenqlSelection {
6761
7591
  /**
@@ -7435,18 +8265,21 @@ export declare const isClassesEdge: (obj?: {
7435
8265
  export declare const isPageInfo: (obj?: {
7436
8266
  __typename?: any;
7437
8267
  } | null) => obj is PageInfo;
7438
- export declare const isConsumablesConnection: (obj?: {
8268
+ export declare const isConcoctionsConnection: (obj?: {
7439
8269
  __typename?: any;
7440
- } | null) => obj is ConsumablesConnection;
7441
- export declare const isConsumable: (obj?: {
8270
+ } | null) => obj is ConcoctionsConnection;
8271
+ export declare const isConcoction: (obj?: {
7442
8272
  __typename?: any;
7443
- } | null) => obj is Consumable;
8273
+ } | null) => obj is Concoction;
7444
8274
  export declare const isItem: (obj?: {
7445
8275
  __typename?: any;
7446
8276
  } | null) => obj is Item;
7447
8277
  export declare const isEquipment: (obj?: {
7448
8278
  __typename?: any;
7449
8279
  } | null) => obj is Equipment;
8280
+ export declare const isConsumable: (obj?: {
8281
+ __typename?: any;
8282
+ } | null) => obj is Consumable;
7450
8283
  export declare const isFamiliarsConnection: (obj?: {
7451
8284
  __typename?: any;
7452
8285
  } | null) => obj is FamiliarsConnection;
@@ -7468,6 +8301,18 @@ export declare const isMonsterDrop: (obj?: {
7468
8301
  export declare const isMonster: (obj?: {
7469
8302
  __typename?: any;
7470
8303
  } | null) => obj is Monster;
8304
+ export declare const isNativeMonstersConnection: (obj?: {
8305
+ __typename?: any;
8306
+ } | null) => obj is NativeMonstersConnection;
8307
+ export declare const isNativeMonster: (obj?: {
8308
+ __typename?: any;
8309
+ } | null) => obj is NativeMonster;
8310
+ export declare const isLocation: (obj?: {
8311
+ __typename?: any;
8312
+ } | null) => obj is Location;
8313
+ export declare const isNativeMonstersEdge: (obj?: {
8314
+ __typename?: any;
8315
+ } | null) => obj is NativeMonstersEdge;
7471
8316
  export declare const isMonsterDropsEdge: (obj?: {
7472
8317
  __typename?: any;
7473
8318
  } | null) => obj is MonsterDropsEdge;
@@ -7507,6 +8352,21 @@ export declare const isFoldablesEdge: (obj?: {
7507
8352
  export declare const isItemModifier: (obj?: {
7508
8353
  __typename?: any;
7509
8354
  } | null) => obj is ItemModifier;
8355
+ export declare const isIngredientsConnection: (obj?: {
8356
+ __typename?: any;
8357
+ } | null) => obj is IngredientsConnection;
8358
+ export declare const isIngredient: (obj?: {
8359
+ __typename?: any;
8360
+ } | null) => obj is Ingredient;
8361
+ export declare const isIngredientsEdge: (obj?: {
8362
+ __typename?: any;
8363
+ } | null) => obj is IngredientsEdge;
8364
+ export declare const isConcoctionsEdge: (obj?: {
8365
+ __typename?: any;
8366
+ } | null) => obj is ConcoctionsEdge;
8367
+ export declare const isConsumablesConnection: (obj?: {
8368
+ __typename?: any;
8369
+ } | null) => obj is ConsumablesConnection;
7510
8370
  export declare const isConsumablesEdge: (obj?: {
7511
8371
  __typename?: any;
7512
8372
  } | null) => obj is ConsumablesEdge;
@@ -7561,9 +8421,6 @@ export declare const isItemsEdge: (obj?: {
7561
8421
  export declare const isLocationsConnection: (obj?: {
7562
8422
  __typename?: any;
7563
8423
  } | null) => obj is LocationsConnection;
7564
- export declare const isLocation: (obj?: {
7565
- __typename?: any;
7566
- } | null) => obj is Location;
7567
8424
  export declare const isLocationsEdge: (obj?: {
7568
8425
  __typename?: any;
7569
8426
  } | null) => obj is LocationsEdge;
@@ -7618,6 +8475,9 @@ export declare const isMutation: (obj?: {
7618
8475
  export declare const isCreateClassPayload: (obj?: {
7619
8476
  __typename?: any;
7620
8477
  } | null) => obj is CreateClassPayload;
8478
+ export declare const isCreateConcoctionPayload: (obj?: {
8479
+ __typename?: any;
8480
+ } | null) => obj is CreateConcoctionPayload;
7621
8481
  export declare const isCreateConsumablePayload: (obj?: {
7622
8482
  __typename?: any;
7623
8483
  } | null) => obj is CreateConsumablePayload;
@@ -7642,6 +8502,9 @@ export declare const isCreateFoldGroupPayload: (obj?: {
7642
8502
  export declare const isCreateFoldablePayload: (obj?: {
7643
8503
  __typename?: any;
7644
8504
  } | null) => obj is CreateFoldablePayload;
8505
+ export declare const isCreateIngredientPayload: (obj?: {
8506
+ __typename?: any;
8507
+ } | null) => obj is CreateIngredientPayload;
7645
8508
  export declare const isCreateItemModifierPayload: (obj?: {
7646
8509
  __typename?: any;
7647
8510
  } | null) => obj is CreateItemModifierPayload;
@@ -7660,6 +8523,9 @@ export declare const isCreateMonsterDropPayload: (obj?: {
7660
8523
  export declare const isCreateMonsterPayload: (obj?: {
7661
8524
  __typename?: any;
7662
8525
  } | null) => obj is CreateMonsterPayload;
8526
+ export declare const isCreateNativeMonsterPayload: (obj?: {
8527
+ __typename?: any;
8528
+ } | null) => obj is CreateNativeMonsterPayload;
7663
8529
  export declare const isCreateOutfitEquipmentPayload: (obj?: {
7664
8530
  __typename?: any;
7665
8531
  } | null) => obj is CreateOutfitEquipmentPayload;
@@ -7681,6 +8547,9 @@ export declare const isCreateSkillPayload: (obj?: {
7681
8547
  export declare const isUpdateClassPayload: (obj?: {
7682
8548
  __typename?: any;
7683
8549
  } | null) => obj is UpdateClassPayload;
8550
+ export declare const isUpdateConcoctionPayload: (obj?: {
8551
+ __typename?: any;
8552
+ } | null) => obj is UpdateConcoctionPayload;
7684
8553
  export declare const isUpdateConsumablePayload: (obj?: {
7685
8554
  __typename?: any;
7686
8555
  } | null) => obj is UpdateConsumablePayload;
@@ -7729,6 +8598,9 @@ export declare const isUpdateSkillPayload: (obj?: {
7729
8598
  export declare const isDeleteClassPayload: (obj?: {
7730
8599
  __typename?: any;
7731
8600
  } | null) => obj is DeleteClassPayload;
8601
+ export declare const isDeleteConcoctionPayload: (obj?: {
8602
+ __typename?: any;
8603
+ } | null) => obj is DeleteConcoctionPayload;
7732
8604
  export declare const isDeleteConsumablePayload: (obj?: {
7733
8605
  __typename?: any;
7734
8606
  } | null) => obj is DeleteConsumablePayload;
@@ -7799,21 +8671,6 @@ export declare const enumClassesOrderBy: {
7799
8671
  PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
7800
8672
  PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
7801
8673
  };
7802
- export declare const enumConsumableQuality: {
7803
- EPIC: "EPIC";
7804
- AWESOME: "AWESOME";
7805
- CHANGING: "CHANGING";
7806
- CRAPPY: "CRAPPY";
7807
- DECENT: "DECENT";
7808
- DRIPPY: "DRIPPY";
7809
- GOOD: "GOOD";
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";
7816
- };
7817
8674
  export declare const enumItemUse: {
7818
8675
  ACCESSORY: "ACCESSORY";
7819
8676
  AVATAR: "AVATAR";
@@ -7863,6 +8720,21 @@ export declare const enumItemUse: {
7863
8720
  WEAPON: "WEAPON";
7864
8721
  ZAP: "ZAP";
7865
8722
  };
8723
+ export declare const enumConsumableQuality: {
8724
+ EPIC: "EPIC";
8725
+ AWESOME: "AWESOME";
8726
+ CHANGING: "CHANGING";
8727
+ CRAPPY: "CRAPPY";
8728
+ DECENT: "DECENT";
8729
+ DRIPPY: "DRIPPY";
8730
+ GOOD: "GOOD";
8731
+ NONE: "NONE";
8732
+ QUEST: "QUEST";
8733
+ SUPER_EPIC: "SUPER_EPIC";
8734
+ SUPER_ULTRA_EPIC: "SUPER_ULTRA_EPIC";
8735
+ SUPER_ULTRA_MEGA_EPIC: "SUPER_ULTRA_MEGA_EPIC";
8736
+ SUPER_ULTRA_MEGA_TURBO_EPIC: "SUPER_ULTRA_MEGA_TURBO_EPIC";
8737
+ };
7866
8738
  export declare const enumFamiliarCategory: {
7867
8739
  BLOCK: "BLOCK";
7868
8740
  COMBAT0: "COMBAT0";
@@ -7949,6 +8821,33 @@ export declare const enumMonsterDropsOrderBy: {
7949
8821
  CATEGORY_ASC: "CATEGORY_ASC";
7950
8822
  CATEGORY_DESC: "CATEGORY_DESC";
7951
8823
  };
8824
+ export declare const enumLocationDifficulty: {
8825
+ HIGH: "HIGH";
8826
+ LOW: "LOW";
8827
+ MEDIUM: "MEDIUM";
8828
+ NONE: "NONE";
8829
+ UNKNOWN: "UNKNOWN";
8830
+ };
8831
+ export declare const enumLocationEnvironment: {
8832
+ INDOOR: "INDOOR";
8833
+ NONE: "NONE";
8834
+ OUTDOOR: "OUTDOOR";
8835
+ UNDERGROUND: "UNDERGROUND";
8836
+ UNDERWATER: "UNDERWATER";
8837
+ };
8838
+ export declare const enumNativeMonstersOrderBy: {
8839
+ NATURAL: "NATURAL";
8840
+ LOCATION_ASC: "LOCATION_ASC";
8841
+ LOCATION_DESC: "LOCATION_DESC";
8842
+ MONSTER_ASC: "MONSTER_ASC";
8843
+ MONSTER_DESC: "MONSTER_DESC";
8844
+ WEIGHT_ASC: "WEIGHT_ASC";
8845
+ WEIGHT_DESC: "WEIGHT_DESC";
8846
+ REJECTION_ASC: "REJECTION_ASC";
8847
+ REJECTION_DESC: "REJECTION_DESC";
8848
+ PARITY_ASC: "PARITY_ASC";
8849
+ PARITY_DESC: "PARITY_DESC";
8850
+ };
7952
8851
  export declare const enumOutfitEquipmentsOrderBy: {
7953
8852
  NATURAL: "NATURAL";
7954
8853
  OUTFIT_ASC: "OUTFIT_ASC";
@@ -7972,6 +8871,28 @@ export declare const enumFoldablesOrderBy: {
7972
8871
  ITEM_ASC: "ITEM_ASC";
7973
8872
  ITEM_DESC: "ITEM_DESC";
7974
8873
  };
8874
+ export declare const enumConcoctionsOrderBy: {
8875
+ NATURAL: "NATURAL";
8876
+ ID_ASC: "ID_ASC";
8877
+ ID_DESC: "ID_DESC";
8878
+ ITEM_ASC: "ITEM_ASC";
8879
+ ITEM_DESC: "ITEM_DESC";
8880
+ METHODS_ASC: "METHODS_ASC";
8881
+ METHODS_DESC: "METHODS_DESC";
8882
+ COMMENT_ASC: "COMMENT_ASC";
8883
+ COMMENT_DESC: "COMMENT_DESC";
8884
+ PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8885
+ PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8886
+ };
8887
+ export declare const enumIngredientsOrderBy: {
8888
+ NATURAL: "NATURAL";
8889
+ CONCOCTION_ASC: "CONCOCTION_ASC";
8890
+ CONCOCTION_DESC: "CONCOCTION_DESC";
8891
+ ITEM_ASC: "ITEM_ASC";
8892
+ ITEM_DESC: "ITEM_DESC";
8893
+ QUANTITY_ASC: "QUANTITY_ASC";
8894
+ QUANTITY_DESC: "QUANTITY_DESC";
8895
+ };
7975
8896
  export declare const enumConsumablesOrderBy: {
7976
8897
  NATURAL: "NATURAL";
7977
8898
  ID_ASC: "ID_ASC";
@@ -8123,20 +9044,6 @@ export declare const enumItemsOrderBy: {
8123
9044
  PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8124
9045
  PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8125
9046
  };
8126
- export declare const enumLocationDifficulty: {
8127
- HIGH: "HIGH";
8128
- LOW: "LOW";
8129
- MEDIUM: "MEDIUM";
8130
- NONE: "NONE";
8131
- UNKNOWN: "UNKNOWN";
8132
- };
8133
- export declare const enumLocationEnvironment: {
8134
- INDOOR: "INDOOR";
8135
- NONE: "NONE";
8136
- OUTDOOR: "OUTDOOR";
8137
- UNDERGROUND: "UNDERGROUND";
8138
- UNDERWATER: "UNDERWATER";
8139
- };
8140
9047
  export declare const enumLocationsOrderBy: {
8141
9048
  NATURAL: "NATURAL";
8142
9049
  ID_ASC: "ID_ASC";
@@ -8159,6 +9066,8 @@ export declare const enumLocationsOrderBy: {
8159
9066
  OVERDRUNK_DESC: "OVERDRUNK_DESC";
8160
9067
  NOWANDER_ASC: "NOWANDER_ASC";
8161
9068
  NOWANDER_DESC: "NOWANDER_DESC";
9069
+ COMBAT_RATE_ASC: "COMBAT_RATE_ASC";
9070
+ COMBAT_RATE_DESC: "COMBAT_RATE_DESC";
8162
9071
  PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
8163
9072
  PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
8164
9073
  };