data-of-loathing 2.2.0 → 2.4.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 +727 -79
- package/dist/schema.js +122 -30
- package/dist/types.d.ts +240 -20
- package/dist/types.js +1394 -820
- package/package.json +2 -2
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`. */
|
|
@@ -64,6 +68,7 @@ export interface Query {
|
|
|
64
68
|
/** Reads and enables pagination through a set of `Skill`. */
|
|
65
69
|
allSkills: (SkillsConnection | null);
|
|
66
70
|
classById: (Class | null);
|
|
71
|
+
concoctionById: (Concoction | null);
|
|
67
72
|
consumableById: (Consumable | null);
|
|
68
73
|
effectModifierByEffect: (EffectModifier | null);
|
|
69
74
|
effectById: (Effect | null);
|
|
@@ -84,6 +89,8 @@ export interface Query {
|
|
|
84
89
|
skillById: (Skill | null);
|
|
85
90
|
/** Reads a single `Class` using its globally unique `ID`. */
|
|
86
91
|
class: (Class | null);
|
|
92
|
+
/** Reads a single `Concoction` using its globally unique `ID`. */
|
|
93
|
+
concoction: (Concoction | null);
|
|
87
94
|
/** Reads a single `Consumable` using its globally unique `ID`. */
|
|
88
95
|
consumable: (Consumable | null);
|
|
89
96
|
/** Reads a single `EffectModifier` using its globally unique `ID`. */
|
|
@@ -117,7 +124,7 @@ export interface Query {
|
|
|
117
124
|
__typename: 'Query';
|
|
118
125
|
}
|
|
119
126
|
/** An object with a globally unique `ID`. */
|
|
120
|
-
export type Node = (Query | Class | Path |
|
|
127
|
+
export type Node = (Query | Class | Path | Concoction | Item | Equipment | Consumable | Familiar | FamiliarModifier | Monster | Location | Outfit | FoldGroup | ItemModifier | EffectModifier | Effect | SkillModifier | Skill) & {
|
|
121
128
|
__isUnion?: true;
|
|
122
129
|
};
|
|
123
130
|
/** A connection to a list of `Class` values. */
|
|
@@ -190,47 +197,37 @@ export interface PageInfo {
|
|
|
190
197
|
endCursor: (Scalars['Cursor'] | null);
|
|
191
198
|
__typename: 'PageInfo';
|
|
192
199
|
}
|
|
193
|
-
/** A connection to a list of `
|
|
194
|
-
export interface
|
|
195
|
-
/** A list of `
|
|
196
|
-
nodes: (
|
|
197
|
-
/** A list of edges which contains the `
|
|
198
|
-
edges:
|
|
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[];
|
|
199
206
|
/** Information to aid in pagination. */
|
|
200
207
|
pageInfo: PageInfo;
|
|
201
|
-
/** The count of *all* `
|
|
208
|
+
/** The count of *all* `Concoction` you could get from the connection. */
|
|
202
209
|
totalCount: Scalars['Int'];
|
|
203
|
-
__typename: '
|
|
210
|
+
__typename: 'ConcoctionsConnection';
|
|
204
211
|
}
|
|
205
|
-
export interface
|
|
212
|
+
export interface Concoction {
|
|
206
213
|
/** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
|
|
207
214
|
nodeId: Scalars['ID'];
|
|
208
215
|
id: Scalars['Int'];
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
muscleRange: Scalars['String'];
|
|
218
|
-
mysticality: Scalars['Float'];
|
|
219
|
-
mysticalityRange: Scalars['String'];
|
|
220
|
-
moxie: Scalars['Float'];
|
|
221
|
-
moxieRange: Scalars['String'];
|
|
222
|
-
notes: (Scalars['String'] | null);
|
|
223
|
-
/** Reads a single `Item` that is related to this `Consumable`. */
|
|
224
|
-
itemById: (Item | null);
|
|
225
|
-
__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';
|
|
226
224
|
}
|
|
227
|
-
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';
|
|
228
225
|
export interface Item {
|
|
229
226
|
/** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
|
|
230
227
|
nodeId: Scalars['ID'];
|
|
231
228
|
id: Scalars['Int'];
|
|
232
229
|
name: Scalars['String'];
|
|
233
|
-
descid: (Scalars['
|
|
230
|
+
descid: (Scalars['Int'] | null);
|
|
234
231
|
image: Scalars['String'];
|
|
235
232
|
uses: (ItemUse | null)[];
|
|
236
233
|
quest: Scalars['Boolean'];
|
|
@@ -258,6 +255,10 @@ export interface Item {
|
|
|
258
255
|
foldablesByItem: FoldablesConnection;
|
|
259
256
|
/** Reads a single `ItemModifier` that is related to this `Item`. */
|
|
260
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;
|
|
261
262
|
__typename: 'Item';
|
|
262
263
|
}
|
|
263
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';
|
|
@@ -275,6 +276,29 @@ export interface Equipment {
|
|
|
275
276
|
itemById: (Item | null);
|
|
276
277
|
__typename: 'Equipment';
|
|
277
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';
|
|
278
302
|
/** A connection to a list of `Familiar` values. */
|
|
279
303
|
export interface FamiliarsConnection {
|
|
280
304
|
/** A list of `Familiar` objects. */
|
|
@@ -596,6 +620,60 @@ export interface ItemModifier {
|
|
|
596
620
|
itemByItem: (Item | null);
|
|
597
621
|
__typename: 'ItemModifier';
|
|
598
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
|
+
}
|
|
599
677
|
/** A `Consumable` edge in the connection. */
|
|
600
678
|
export interface ConsumablesEdge {
|
|
601
679
|
/** A cursor for use in pagination. */
|
|
@@ -977,6 +1055,8 @@ export type SkillsOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAM
|
|
|
977
1055
|
export interface Mutation {
|
|
978
1056
|
/** Creates a single `Class`. */
|
|
979
1057
|
createClass: (CreateClassPayload | null);
|
|
1058
|
+
/** Creates a single `Concoction`. */
|
|
1059
|
+
createConcoction: (CreateConcoctionPayload | null);
|
|
980
1060
|
/** Creates a single `Consumable`. */
|
|
981
1061
|
createConsumable: (CreateConsumablePayload | null);
|
|
982
1062
|
/** Creates a single `EffectModifier`. */
|
|
@@ -993,6 +1073,8 @@ export interface Mutation {
|
|
|
993
1073
|
createFoldGroup: (CreateFoldGroupPayload | null);
|
|
994
1074
|
/** Creates a single `Foldable`. */
|
|
995
1075
|
createFoldable: (CreateFoldablePayload | null);
|
|
1076
|
+
/** Creates a single `Ingredient`. */
|
|
1077
|
+
createIngredient: (CreateIngredientPayload | null);
|
|
996
1078
|
/** Creates a single `ItemModifier`. */
|
|
997
1079
|
createItemModifier: (CreateItemModifierPayload | null);
|
|
998
1080
|
/** Creates a single `Item`. */
|
|
@@ -1023,6 +1105,10 @@ export interface Mutation {
|
|
|
1023
1105
|
updateClass: (UpdateClassPayload | null);
|
|
1024
1106
|
/** Updates a single `Class` using a unique key and a patch. */
|
|
1025
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);
|
|
1026
1112
|
/** Updates a single `Consumable` using its globally unique id and a patch. */
|
|
1027
1113
|
updateConsumable: (UpdateConsumablePayload | null);
|
|
1028
1114
|
/** Updates a single `Consumable` using a unique key and a patch. */
|
|
@@ -1093,6 +1179,10 @@ export interface Mutation {
|
|
|
1093
1179
|
deleteClass: (DeleteClassPayload | null);
|
|
1094
1180
|
/** Deletes a single `Class` using a unique key. */
|
|
1095
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);
|
|
1096
1186
|
/** Deletes a single `Consumable` using its globally unique id. */
|
|
1097
1187
|
deleteConsumable: (DeleteConsumablePayload | null);
|
|
1098
1188
|
/** Deletes a single `Consumable` using a unique key. */
|
|
@@ -1178,6 +1268,23 @@ export interface CreateClassPayload {
|
|
|
1178
1268
|
classEdge: (ClassesEdge | null);
|
|
1179
1269
|
__typename: 'CreateClassPayload';
|
|
1180
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
|
+
}
|
|
1181
1288
|
/** The output of our create `Consumable` mutation. */
|
|
1182
1289
|
export interface CreateConsumablePayload {
|
|
1183
1290
|
/**
|
|
@@ -1314,6 +1421,25 @@ export interface CreateFoldablePayload {
|
|
|
1314
1421
|
foldableEdge: (FoldablesEdge | null);
|
|
1315
1422
|
__typename: 'CreateFoldablePayload';
|
|
1316
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
|
+
}
|
|
1317
1443
|
/** The output of our create `ItemModifier` mutation. */
|
|
1318
1444
|
export interface CreateItemModifierPayload {
|
|
1319
1445
|
/**
|
|
@@ -1546,6 +1672,23 @@ export interface UpdateClassPayload {
|
|
|
1546
1672
|
classEdge: (ClassesEdge | null);
|
|
1547
1673
|
__typename: 'UpdateClassPayload';
|
|
1548
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
|
+
}
|
|
1549
1692
|
/** The output of our update `Consumable` mutation. */
|
|
1550
1693
|
export interface UpdateConsumablePayload {
|
|
1551
1694
|
/**
|
|
@@ -1805,6 +1948,24 @@ export interface DeleteClassPayload {
|
|
|
1805
1948
|
classEdge: (ClassesEdge | null);
|
|
1806
1949
|
__typename: 'DeleteClassPayload';
|
|
1807
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
|
+
}
|
|
1808
1969
|
/** The output of our delete `Consumable` mutation. */
|
|
1809
1970
|
export interface DeleteConsumablePayload {
|
|
1810
1971
|
/**
|
|
@@ -2099,6 +2260,28 @@ export interface QueryGenqlSelection {
|
|
|
2099
2260
|
condition?: (ClassCondition | null);
|
|
2100
2261
|
};
|
|
2101
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
|
+
});
|
|
2102
2285
|
/** Reads and enables pagination through a set of `Consumable`. */
|
|
2103
2286
|
allConsumables?: (ConsumablesConnectionGenqlSelection & {
|
|
2104
2287
|
__args?: {
|
|
@@ -2275,6 +2458,28 @@ export interface QueryGenqlSelection {
|
|
|
2275
2458
|
condition?: (FoldableCondition | null);
|
|
2276
2459
|
};
|
|
2277
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
|
+
});
|
|
2278
2483
|
/** Reads and enables pagination through a set of `ItemModifier`. */
|
|
2279
2484
|
allItemModifiers?: (ItemModifiersConnectionGenqlSelection & {
|
|
2280
2485
|
__args?: {
|
|
@@ -2566,6 +2771,11 @@ export interface QueryGenqlSelection {
|
|
|
2566
2771
|
id: Scalars['Int'];
|
|
2567
2772
|
};
|
|
2568
2773
|
});
|
|
2774
|
+
concoctionById?: (ConcoctionGenqlSelection & {
|
|
2775
|
+
__args: {
|
|
2776
|
+
id: Scalars['Int'];
|
|
2777
|
+
};
|
|
2778
|
+
});
|
|
2569
2779
|
consumableById?: (ConsumableGenqlSelection & {
|
|
2570
2780
|
__args: {
|
|
2571
2781
|
id: Scalars['Int'];
|
|
@@ -2618,7 +2828,7 @@ export interface QueryGenqlSelection {
|
|
|
2618
2828
|
});
|
|
2619
2829
|
itemByDescid?: (ItemGenqlSelection & {
|
|
2620
2830
|
__args: {
|
|
2621
|
-
descid: Scalars['
|
|
2831
|
+
descid: Scalars['Int'];
|
|
2622
2832
|
};
|
|
2623
2833
|
});
|
|
2624
2834
|
locationByName?: (LocationGenqlSelection & {
|
|
@@ -2663,6 +2873,13 @@ export interface QueryGenqlSelection {
|
|
|
2663
2873
|
nodeId: Scalars['ID'];
|
|
2664
2874
|
};
|
|
2665
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
|
+
});
|
|
2666
2883
|
/** Reads a single `Consumable` using its globally unique `ID`. */
|
|
2667
2884
|
consumable?: (ConsumableGenqlSelection & {
|
|
2668
2885
|
__args: {
|
|
@@ -2778,9 +2995,10 @@ export interface NodeGenqlSelection {
|
|
|
2778
2995
|
on_Query?: QueryGenqlSelection;
|
|
2779
2996
|
on_Class?: ClassGenqlSelection;
|
|
2780
2997
|
on_Path?: PathGenqlSelection;
|
|
2781
|
-
|
|
2998
|
+
on_Concoction?: ConcoctionGenqlSelection;
|
|
2782
2999
|
on_Item?: ItemGenqlSelection;
|
|
2783
3000
|
on_Equipment?: EquipmentGenqlSelection;
|
|
3001
|
+
on_Consumable?: ConsumableGenqlSelection;
|
|
2784
3002
|
on_Familiar?: FamiliarGenqlSelection;
|
|
2785
3003
|
on_FamiliarModifier?: FamiliarModifierGenqlSelection;
|
|
2786
3004
|
on_Monster?: MonsterGenqlSelection;
|
|
@@ -2911,39 +3129,50 @@ export interface PageInfoGenqlSelection {
|
|
|
2911
3129
|
__typename?: boolean | number;
|
|
2912
3130
|
__scalar?: boolean | number;
|
|
2913
3131
|
}
|
|
2914
|
-
/** A connection to a list of `
|
|
2915
|
-
export interface
|
|
2916
|
-
/** A list of `
|
|
2917
|
-
nodes?:
|
|
2918
|
-
/** A list of edges which contains the `
|
|
2919
|
-
edges?:
|
|
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;
|
|
2920
3138
|
/** Information to aid in pagination. */
|
|
2921
3139
|
pageInfo?: PageInfoGenqlSelection;
|
|
2922
|
-
/** The count of *all* `
|
|
3140
|
+
/** The count of *all* `Concoction` you could get from the connection. */
|
|
2923
3141
|
totalCount?: boolean | number;
|
|
2924
3142
|
__typename?: boolean | number;
|
|
2925
3143
|
__scalar?: boolean | number;
|
|
2926
3144
|
}
|
|
2927
|
-
export interface
|
|
3145
|
+
export interface ConcoctionGenqlSelection {
|
|
2928
3146
|
/** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
|
|
2929
3147
|
nodeId?: boolean | number;
|
|
2930
3148
|
id?: boolean | number;
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
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
|
+
});
|
|
2947
3176
|
__typename?: boolean | number;
|
|
2948
3177
|
__scalar?: boolean | number;
|
|
2949
3178
|
}
|
|
@@ -3100,6 +3329,50 @@ export interface ItemGenqlSelection {
|
|
|
3100
3329
|
});
|
|
3101
3330
|
/** Reads a single `ItemModifier` that is related to this `Item`. */
|
|
3102
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
|
+
});
|
|
3103
3376
|
__typename?: boolean | number;
|
|
3104
3377
|
__scalar?: boolean | number;
|
|
3105
3378
|
}
|
|
@@ -3118,6 +3391,29 @@ export interface EquipmentGenqlSelection {
|
|
|
3118
3391
|
__typename?: boolean | number;
|
|
3119
3392
|
__scalar?: boolean | number;
|
|
3120
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
|
+
}
|
|
3121
3417
|
/** A connection to a list of `Familiar` values. */
|
|
3122
3418
|
export interface FamiliarsConnectionGenqlSelection {
|
|
3123
3419
|
/** A list of `Familiar` objects. */
|
|
@@ -3656,6 +3952,87 @@ export interface ItemModifierGenqlSelection {
|
|
|
3656
3952
|
__typename?: boolean | number;
|
|
3657
3953
|
__scalar?: boolean | number;
|
|
3658
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
|
+
}
|
|
3659
4036
|
/** A `Consumable` edge in the connection. */
|
|
3660
4037
|
export interface ConsumablesEdgeGenqlSelection {
|
|
3661
4038
|
/** A cursor for use in pagination. */
|
|
@@ -3976,7 +4353,7 @@ export interface ItemCondition {
|
|
|
3976
4353
|
/** Checks for equality with the object’s `name` field. */
|
|
3977
4354
|
name?: (Scalars['String'] | null);
|
|
3978
4355
|
/** Checks for equality with the object’s `descid` field. */
|
|
3979
|
-
descid?: (Scalars['
|
|
4356
|
+
descid?: (Scalars['Int'] | null);
|
|
3980
4357
|
/** Checks for equality with the object’s `image` field. */
|
|
3981
4358
|
image?: (Scalars['String'] | null);
|
|
3982
4359
|
/** Checks for equality with the object’s `uses` field. */
|
|
@@ -4387,6 +4764,13 @@ export interface MutationGenqlSelection {
|
|
|
4387
4764
|
input: CreateClassInput;
|
|
4388
4765
|
};
|
|
4389
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
|
+
});
|
|
4390
4774
|
/** Creates a single `Consumable`. */
|
|
4391
4775
|
createConsumable?: (CreateConsumablePayloadGenqlSelection & {
|
|
4392
4776
|
__args: {
|
|
@@ -4443,6 +4827,13 @@ export interface MutationGenqlSelection {
|
|
|
4443
4827
|
input: CreateFoldableInput;
|
|
4444
4828
|
};
|
|
4445
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
|
+
});
|
|
4446
4837
|
/** Creates a single `ItemModifier`. */
|
|
4447
4838
|
createItemModifier?: (CreateItemModifierPayloadGenqlSelection & {
|
|
4448
4839
|
__args: {
|
|
@@ -4548,6 +4939,20 @@ export interface MutationGenqlSelection {
|
|
|
4548
4939
|
input: UpdateClassByIdInput;
|
|
4549
4940
|
};
|
|
4550
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
|
+
});
|
|
4551
4956
|
/** Updates a single `Consumable` using its globally unique id and a patch. */
|
|
4552
4957
|
updateConsumable?: (UpdateConsumablePayloadGenqlSelection & {
|
|
4553
4958
|
__args: {
|
|
@@ -4793,6 +5198,20 @@ export interface MutationGenqlSelection {
|
|
|
4793
5198
|
input: DeleteClassByIdInput;
|
|
4794
5199
|
};
|
|
4795
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
|
+
});
|
|
4796
5215
|
/** Deletes a single `Consumable` using its globally unique id. */
|
|
4797
5216
|
deleteConsumable?: (DeleteConsumablePayloadGenqlSelection & {
|
|
4798
5217
|
__args: {
|
|
@@ -5073,6 +5492,46 @@ export interface ClassInput {
|
|
|
5073
5492
|
liverCapacity?: (Scalars['Int'] | null);
|
|
5074
5493
|
spleenCapacity?: (Scalars['Int'] | null);
|
|
5075
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
|
+
}
|
|
5076
5535
|
/** The output of our create `Consumable` mutation. */
|
|
5077
5536
|
export interface CreateConsumablePayloadGenqlSelection {
|
|
5078
5537
|
/**
|
|
@@ -5413,6 +5872,47 @@ export interface FoldableInput {
|
|
|
5413
5872
|
foldGroup?: (Scalars['Int'] | null);
|
|
5414
5873
|
item?: (Scalars['Int'] | null);
|
|
5415
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
|
+
}
|
|
5416
5916
|
/** The output of our create `ItemModifier` mutation. */
|
|
5417
5917
|
export interface CreateItemModifierPayloadGenqlSelection {
|
|
5418
5918
|
/**
|
|
@@ -5486,7 +5986,7 @@ export interface CreateItemInput {
|
|
|
5486
5986
|
export interface ItemInput {
|
|
5487
5987
|
id: Scalars['Int'];
|
|
5488
5988
|
name: Scalars['String'];
|
|
5489
|
-
descid?: (Scalars['
|
|
5989
|
+
descid?: (Scalars['Int'] | null);
|
|
5490
5990
|
image: Scalars['String'];
|
|
5491
5991
|
uses: (ItemUse | null)[];
|
|
5492
5992
|
quest: Scalars['Boolean'];
|
|
@@ -6046,6 +6546,59 @@ export interface UpdateClassByIdInput {
|
|
|
6046
6546
|
classPatch: ClassPatch;
|
|
6047
6547
|
id: Scalars['Int'];
|
|
6048
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
|
+
}
|
|
6049
6602
|
/** The output of our update `Consumable` mutation. */
|
|
6050
6603
|
export interface UpdateConsumablePayloadGenqlSelection {
|
|
6051
6604
|
/**
|
|
@@ -6536,7 +7089,7 @@ export interface UpdateItemInput {
|
|
|
6536
7089
|
export interface ItemPatch {
|
|
6537
7090
|
id?: (Scalars['Int'] | null);
|
|
6538
7091
|
name?: (Scalars['String'] | null);
|
|
6539
|
-
descid?: (Scalars['
|
|
7092
|
+
descid?: (Scalars['Int'] | null);
|
|
6540
7093
|
image?: (Scalars['String'] | null);
|
|
6541
7094
|
uses?: ((ItemUse | null)[] | null);
|
|
6542
7095
|
quest?: (Scalars['Boolean'] | null);
|
|
@@ -6567,7 +7120,7 @@ export interface UpdateItemByDescidInput {
|
|
|
6567
7120
|
clientMutationId?: (Scalars['String'] | null);
|
|
6568
7121
|
/** An object where the defined keys will be set on the `Item` being updated. */
|
|
6569
7122
|
itemPatch: ItemPatch;
|
|
6570
|
-
descid: Scalars['
|
|
7123
|
+
descid: Scalars['Int'];
|
|
6571
7124
|
}
|
|
6572
7125
|
/** The output of our update `Location` mutation. */
|
|
6573
7126
|
export interface UpdateLocationPayloadGenqlSelection {
|
|
@@ -6990,6 +7543,49 @@ export interface DeleteClassByIdInput {
|
|
|
6990
7543
|
clientMutationId?: (Scalars['String'] | null);
|
|
6991
7544
|
id: Scalars['Int'];
|
|
6992
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
|
+
}
|
|
6993
7589
|
/** The output of our delete `Consumable` mutation. */
|
|
6994
7590
|
export interface DeleteConsumablePayloadGenqlSelection {
|
|
6995
7591
|
/**
|
|
@@ -7389,7 +7985,7 @@ export interface DeleteItemByDescidInput {
|
|
|
7389
7985
|
* payload verbatim. May be used to track mutations by the client.
|
|
7390
7986
|
*/
|
|
7391
7987
|
clientMutationId?: (Scalars['String'] | null);
|
|
7392
|
-
descid: Scalars['
|
|
7988
|
+
descid: Scalars['Int'];
|
|
7393
7989
|
}
|
|
7394
7990
|
/** The output of our delete `Location` mutation. */
|
|
7395
7991
|
export interface DeleteLocationPayloadGenqlSelection {
|
|
@@ -7669,18 +8265,21 @@ export declare const isClassesEdge: (obj?: {
|
|
|
7669
8265
|
export declare const isPageInfo: (obj?: {
|
|
7670
8266
|
__typename?: any;
|
|
7671
8267
|
} | null) => obj is PageInfo;
|
|
7672
|
-
export declare const
|
|
8268
|
+
export declare const isConcoctionsConnection: (obj?: {
|
|
7673
8269
|
__typename?: any;
|
|
7674
|
-
} | null) => obj is
|
|
7675
|
-
export declare const
|
|
8270
|
+
} | null) => obj is ConcoctionsConnection;
|
|
8271
|
+
export declare const isConcoction: (obj?: {
|
|
7676
8272
|
__typename?: any;
|
|
7677
|
-
} | null) => obj is
|
|
8273
|
+
} | null) => obj is Concoction;
|
|
7678
8274
|
export declare const isItem: (obj?: {
|
|
7679
8275
|
__typename?: any;
|
|
7680
8276
|
} | null) => obj is Item;
|
|
7681
8277
|
export declare const isEquipment: (obj?: {
|
|
7682
8278
|
__typename?: any;
|
|
7683
8279
|
} | null) => obj is Equipment;
|
|
8280
|
+
export declare const isConsumable: (obj?: {
|
|
8281
|
+
__typename?: any;
|
|
8282
|
+
} | null) => obj is Consumable;
|
|
7684
8283
|
export declare const isFamiliarsConnection: (obj?: {
|
|
7685
8284
|
__typename?: any;
|
|
7686
8285
|
} | null) => obj is FamiliarsConnection;
|
|
@@ -7753,6 +8352,21 @@ export declare const isFoldablesEdge: (obj?: {
|
|
|
7753
8352
|
export declare const isItemModifier: (obj?: {
|
|
7754
8353
|
__typename?: any;
|
|
7755
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;
|
|
7756
8370
|
export declare const isConsumablesEdge: (obj?: {
|
|
7757
8371
|
__typename?: any;
|
|
7758
8372
|
} | null) => obj is ConsumablesEdge;
|
|
@@ -7861,6 +8475,9 @@ export declare const isMutation: (obj?: {
|
|
|
7861
8475
|
export declare const isCreateClassPayload: (obj?: {
|
|
7862
8476
|
__typename?: any;
|
|
7863
8477
|
} | null) => obj is CreateClassPayload;
|
|
8478
|
+
export declare const isCreateConcoctionPayload: (obj?: {
|
|
8479
|
+
__typename?: any;
|
|
8480
|
+
} | null) => obj is CreateConcoctionPayload;
|
|
7864
8481
|
export declare const isCreateConsumablePayload: (obj?: {
|
|
7865
8482
|
__typename?: any;
|
|
7866
8483
|
} | null) => obj is CreateConsumablePayload;
|
|
@@ -7885,6 +8502,9 @@ export declare const isCreateFoldGroupPayload: (obj?: {
|
|
|
7885
8502
|
export declare const isCreateFoldablePayload: (obj?: {
|
|
7886
8503
|
__typename?: any;
|
|
7887
8504
|
} | null) => obj is CreateFoldablePayload;
|
|
8505
|
+
export declare const isCreateIngredientPayload: (obj?: {
|
|
8506
|
+
__typename?: any;
|
|
8507
|
+
} | null) => obj is CreateIngredientPayload;
|
|
7888
8508
|
export declare const isCreateItemModifierPayload: (obj?: {
|
|
7889
8509
|
__typename?: any;
|
|
7890
8510
|
} | null) => obj is CreateItemModifierPayload;
|
|
@@ -7927,6 +8547,9 @@ export declare const isCreateSkillPayload: (obj?: {
|
|
|
7927
8547
|
export declare const isUpdateClassPayload: (obj?: {
|
|
7928
8548
|
__typename?: any;
|
|
7929
8549
|
} | null) => obj is UpdateClassPayload;
|
|
8550
|
+
export declare const isUpdateConcoctionPayload: (obj?: {
|
|
8551
|
+
__typename?: any;
|
|
8552
|
+
} | null) => obj is UpdateConcoctionPayload;
|
|
7930
8553
|
export declare const isUpdateConsumablePayload: (obj?: {
|
|
7931
8554
|
__typename?: any;
|
|
7932
8555
|
} | null) => obj is UpdateConsumablePayload;
|
|
@@ -7975,6 +8598,9 @@ export declare const isUpdateSkillPayload: (obj?: {
|
|
|
7975
8598
|
export declare const isDeleteClassPayload: (obj?: {
|
|
7976
8599
|
__typename?: any;
|
|
7977
8600
|
} | null) => obj is DeleteClassPayload;
|
|
8601
|
+
export declare const isDeleteConcoctionPayload: (obj?: {
|
|
8602
|
+
__typename?: any;
|
|
8603
|
+
} | null) => obj is DeleteConcoctionPayload;
|
|
7978
8604
|
export declare const isDeleteConsumablePayload: (obj?: {
|
|
7979
8605
|
__typename?: any;
|
|
7980
8606
|
} | null) => obj is DeleteConsumablePayload;
|
|
@@ -8045,21 +8671,6 @@ export declare const enumClassesOrderBy: {
|
|
|
8045
8671
|
PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
|
|
8046
8672
|
PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
|
|
8047
8673
|
};
|
|
8048
|
-
export declare const enumConsumableQuality: {
|
|
8049
|
-
EPIC: "EPIC";
|
|
8050
|
-
AWESOME: "AWESOME";
|
|
8051
|
-
CHANGING: "CHANGING";
|
|
8052
|
-
CRAPPY: "CRAPPY";
|
|
8053
|
-
DECENT: "DECENT";
|
|
8054
|
-
DRIPPY: "DRIPPY";
|
|
8055
|
-
GOOD: "GOOD";
|
|
8056
|
-
NONE: "NONE";
|
|
8057
|
-
QUEST: "QUEST";
|
|
8058
|
-
SUPER_EPIC: "SUPER_EPIC";
|
|
8059
|
-
SUPER_ULTRA_EPIC: "SUPER_ULTRA_EPIC";
|
|
8060
|
-
SUPER_ULTRA_MEGA_EPIC: "SUPER_ULTRA_MEGA_EPIC";
|
|
8061
|
-
SUPER_ULTRA_MEGA_TURBO_EPIC: "SUPER_ULTRA_MEGA_TURBO_EPIC";
|
|
8062
|
-
};
|
|
8063
8674
|
export declare const enumItemUse: {
|
|
8064
8675
|
ACCESSORY: "ACCESSORY";
|
|
8065
8676
|
AVATAR: "AVATAR";
|
|
@@ -8109,6 +8720,21 @@ export declare const enumItemUse: {
|
|
|
8109
8720
|
WEAPON: "WEAPON";
|
|
8110
8721
|
ZAP: "ZAP";
|
|
8111
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
|
+
};
|
|
8112
8738
|
export declare const enumFamiliarCategory: {
|
|
8113
8739
|
BLOCK: "BLOCK";
|
|
8114
8740
|
COMBAT0: "COMBAT0";
|
|
@@ -8245,6 +8871,28 @@ export declare const enumFoldablesOrderBy: {
|
|
|
8245
8871
|
ITEM_ASC: "ITEM_ASC";
|
|
8246
8872
|
ITEM_DESC: "ITEM_DESC";
|
|
8247
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
|
+
};
|
|
8248
8896
|
export declare const enumConsumablesOrderBy: {
|
|
8249
8897
|
NATURAL: "NATURAL";
|
|
8250
8898
|
ID_ASC: "ID_ASC";
|