data-of-loathing 2.6.0 → 2.6.2
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 +220 -4
- package/dist/schema.js +28 -4
- package/dist/types.d.ts +81 -0
- package/dist/types.js +331 -116
- package/package.json +6 -3
package/dist/schema.d.ts
CHANGED
|
@@ -85,6 +85,7 @@ export interface Query {
|
|
|
85
85
|
itemById: (Item | null);
|
|
86
86
|
itemByDescid: (Item | null);
|
|
87
87
|
locationByName: (Location | null);
|
|
88
|
+
metaById: (Meta | null);
|
|
88
89
|
monsterById: (Monster | null);
|
|
89
90
|
outfitById: (Outfit | null);
|
|
90
91
|
pathById: (Path | null);
|
|
@@ -116,6 +117,8 @@ export interface Query {
|
|
|
116
117
|
item: (Item | null);
|
|
117
118
|
/** Reads a single `Location` using its globally unique `ID`. */
|
|
118
119
|
location: (Location | null);
|
|
120
|
+
/** Reads a single `Meta` using its globally unique `ID`. */
|
|
121
|
+
meta: (Meta | null);
|
|
119
122
|
/** Reads a single `Monster` using its globally unique `ID`. */
|
|
120
123
|
monster: (Monster | null);
|
|
121
124
|
/** Reads a single `Outfit` using its globally unique `ID`. */
|
|
@@ -131,7 +134,7 @@ export interface Query {
|
|
|
131
134
|
__typename: 'Query';
|
|
132
135
|
}
|
|
133
136
|
/** An object with a globally unique `ID`. */
|
|
134
|
-
export type Node = (Query | Class | Path | Concoction | Item | Equipment | Consumable | Familiar | FamiliarModifier | Monster | Location | Outfit | FoldGroup | ZapGroup | ItemModifier | EffectModifier | Effect | SkillModifier | Skill) & {
|
|
137
|
+
export type Node = (Query | Class | Path | Concoction | Item | Equipment | Consumable | Familiar | FamiliarModifier | Monster | Location | Outfit | FoldGroup | ZapGroup | ItemModifier | EffectModifier | Effect | Meta | SkillModifier | Skill) & {
|
|
135
138
|
__isUnion?: true;
|
|
136
139
|
};
|
|
137
140
|
/** A connection to a list of `Class` values. */
|
|
@@ -425,6 +428,7 @@ export interface Monster {
|
|
|
425
428
|
scaling: Scalars['String'];
|
|
426
429
|
scalingCap: Scalars['String'];
|
|
427
430
|
scalingFloor: Scalars['String'];
|
|
431
|
+
skeleton: Scalars['Boolean'];
|
|
428
432
|
skillBlockChance: Scalars['Float'];
|
|
429
433
|
snake: Scalars['Boolean'];
|
|
430
434
|
spellBlockChance: Scalars['Float'];
|
|
@@ -434,6 +438,7 @@ export interface Monster {
|
|
|
434
438
|
wanderer: Scalars['Boolean'];
|
|
435
439
|
wiki: (Scalars['String'] | null);
|
|
436
440
|
wish: Scalars['Boolean'];
|
|
441
|
+
zombie: Scalars['Boolean'];
|
|
437
442
|
/** Reads and enables pagination through a set of `MonsterDrop`. */
|
|
438
443
|
monsterDropsByMonster: MonsterDropsConnection;
|
|
439
444
|
/** Reads and enables pagination through a set of `NativeMonster`. */
|
|
@@ -949,7 +954,11 @@ export interface MetasConnection {
|
|
|
949
954
|
__typename: 'MetasConnection';
|
|
950
955
|
}
|
|
951
956
|
export interface Meta {
|
|
952
|
-
|
|
957
|
+
/** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
|
|
958
|
+
nodeId: Scalars['ID'];
|
|
959
|
+
id: Scalars['Int'];
|
|
960
|
+
lastUpdate: Scalars['Datetime'];
|
|
961
|
+
lastRevision: Scalars['Int'];
|
|
953
962
|
__typename: 'Meta';
|
|
954
963
|
}
|
|
955
964
|
/** A `Meta` edge in the connection. */
|
|
@@ -961,7 +970,7 @@ export interface MetasEdge {
|
|
|
961
970
|
__typename: 'MetasEdge';
|
|
962
971
|
}
|
|
963
972
|
/** Methods to use when ordering `Meta`. */
|
|
964
|
-
export type MetasOrderBy = 'NATURAL' | 'LAST_UPDATE_ASC' | 'LAST_UPDATE_DESC';
|
|
973
|
+
export type MetasOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'LAST_UPDATE_ASC' | 'LAST_UPDATE_DESC' | 'LAST_REVISION_ASC' | 'LAST_REVISION_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
965
974
|
/** A connection to a list of `Monster` values. */
|
|
966
975
|
export interface MonstersConnection {
|
|
967
976
|
/** A list of `Monster` objects. */
|
|
@@ -983,7 +992,7 @@ export interface MonstersEdge {
|
|
|
983
992
|
__typename: 'MonstersEdge';
|
|
984
993
|
}
|
|
985
994
|
/** Methods to use when ordering `Monster`. */
|
|
986
|
-
export type MonstersOrderBy = 'NATURAL' | 'AMBIGUOUS_ASC' | 'AMBIGUOUS_DESC' | 'ARTICLE_ASC' | 'ARTICLE_DESC' | 'ATTACK_ASC' | 'ATTACK_DESC' | 'BOSS_ASC' | 'BOSS_DESC' | 'DEFENCE_ASC' | 'DEFENCE_DESC' | 'DRIPPY_ASC' | 'DRIPPY_DESC' | 'ELEMENT_ASC' | 'ELEMENT_DESC' | 'ELEMENTAL_ATTACK_ASC' | 'ELEMENTAL_ATTACK_DESC' | 'ELEMENTAL_DEFENCE_ASC' | 'ELEMENTAL_DEFENCE_DESC' | 'ELEMENTAL_RESISTANCE_ASC' | 'ELEMENTAL_RESISTANCE_DESC' | 'EXPERIENCE_ASC' | 'EXPERIENCE_DESC' | 'FREE_ASC' | 'FREE_DESC' | 'GHOST_ASC' | 'GHOST_DESC' | 'GROUP_SIZE_ASC' | 'GROUP_SIZE_DESC' | 'HP_ASC' | 'HP_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INITIATIVE_ASC' | 'INITIATIVE_DESC' | 'ITEM_BLOCK_CHANCE_ASC' | 'ITEM_BLOCK_CHANCE_DESC' | 'LUCKY_ASC' | 'LUCKY_DESC' | 'MANUEL_ASC' | 'MANUEL_DESC' | 'MEAT_ASC' | 'MEAT_DESC' | 'MEAT_EXPRESSION_ASC' | 'MEAT_EXPRESSION_DESC' | 'MONSTER_LEVEL_MULTIPLIER_ASC' | 'MONSTER_LEVEL_MULTIPLIER_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NOBANISH_ASC' | 'NOBANISH_DESC' | 'NOCOPY_ASC' | 'NOCOPY_DESC' | 'NOMANUEL_ASC' | 'NOMANUEL_DESC' | 'NOWANDER_ASC' | 'NOWANDER_DESC' | 'NOWISH_ASC' | 'NOWISH_DESC' | 'PHYLUM_ASC' | 'PHYLUM_DESC' | 'PHYSICAL_RESISTANCE_ASC' | 'PHYSICAL_RESISTANCE_DESC' | 'POISON_ASC' | 'POISON_DESC' | 'SCALING_ASC' | 'SCALING_DESC' | 'SCALING_CAP_ASC' | 'SCALING_CAP_DESC' | 'SCALING_FLOOR_ASC' | 'SCALING_FLOOR_DESC' | 'SKILL_BLOCK_CHANCE_ASC' | 'SKILL_BLOCK_CHANCE_DESC' | 'SNAKE_ASC' | 'SNAKE_DESC' | 'SPELL_BLOCK_CHANCE_ASC' | 'SPELL_BLOCK_CHANCE_DESC' | 'SPRINKLES_ASC' | 'SPRINKLES_DESC' | 'SUPERLIKELY_ASC' | 'SUPERLIKELY_DESC' | 'ULTRARARE_ASC' | 'ULTRARARE_DESC' | 'WANDERER_ASC' | 'WANDERER_DESC' | 'WIKI_ASC' | 'WIKI_DESC' | 'WISH_ASC' | 'WISH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
995
|
+
export type MonstersOrderBy = 'NATURAL' | 'AMBIGUOUS_ASC' | 'AMBIGUOUS_DESC' | 'ARTICLE_ASC' | 'ARTICLE_DESC' | 'ATTACK_ASC' | 'ATTACK_DESC' | 'BOSS_ASC' | 'BOSS_DESC' | 'DEFENCE_ASC' | 'DEFENCE_DESC' | 'DRIPPY_ASC' | 'DRIPPY_DESC' | 'ELEMENT_ASC' | 'ELEMENT_DESC' | 'ELEMENTAL_ATTACK_ASC' | 'ELEMENTAL_ATTACK_DESC' | 'ELEMENTAL_DEFENCE_ASC' | 'ELEMENTAL_DEFENCE_DESC' | 'ELEMENTAL_RESISTANCE_ASC' | 'ELEMENTAL_RESISTANCE_DESC' | 'EXPERIENCE_ASC' | 'EXPERIENCE_DESC' | 'FREE_ASC' | 'FREE_DESC' | 'GHOST_ASC' | 'GHOST_DESC' | 'GROUP_SIZE_ASC' | 'GROUP_SIZE_DESC' | 'HP_ASC' | 'HP_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INITIATIVE_ASC' | 'INITIATIVE_DESC' | 'ITEM_BLOCK_CHANCE_ASC' | 'ITEM_BLOCK_CHANCE_DESC' | 'LUCKY_ASC' | 'LUCKY_DESC' | 'MANUEL_ASC' | 'MANUEL_DESC' | 'MEAT_ASC' | 'MEAT_DESC' | 'MEAT_EXPRESSION_ASC' | 'MEAT_EXPRESSION_DESC' | 'MONSTER_LEVEL_MULTIPLIER_ASC' | 'MONSTER_LEVEL_MULTIPLIER_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NOBANISH_ASC' | 'NOBANISH_DESC' | 'NOCOPY_ASC' | 'NOCOPY_DESC' | 'NOMANUEL_ASC' | 'NOMANUEL_DESC' | 'NOWANDER_ASC' | 'NOWANDER_DESC' | 'NOWISH_ASC' | 'NOWISH_DESC' | 'PHYLUM_ASC' | 'PHYLUM_DESC' | 'PHYSICAL_RESISTANCE_ASC' | 'PHYSICAL_RESISTANCE_DESC' | 'POISON_ASC' | 'POISON_DESC' | 'SCALING_ASC' | 'SCALING_DESC' | 'SCALING_CAP_ASC' | 'SCALING_CAP_DESC' | 'SCALING_FLOOR_ASC' | 'SCALING_FLOOR_DESC' | 'SKELETON_ASC' | 'SKELETON_DESC' | 'SKILL_BLOCK_CHANCE_ASC' | 'SKILL_BLOCK_CHANCE_DESC' | 'SNAKE_ASC' | 'SNAKE_DESC' | 'SPELL_BLOCK_CHANCE_ASC' | 'SPELL_BLOCK_CHANCE_DESC' | 'SPRINKLES_ASC' | 'SPRINKLES_DESC' | 'SUPERLIKELY_ASC' | 'SUPERLIKELY_DESC' | 'ULTRARARE_ASC' | 'ULTRARARE_DESC' | 'WANDERER_ASC' | 'WANDERER_DESC' | 'WIKI_ASC' | 'WIKI_DESC' | 'WISH_ASC' | 'WISH_DESC' | 'ZOMBIE_ASC' | 'ZOMBIE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
987
996
|
/** A connection to a list of `Outfit` values. */
|
|
988
997
|
export interface OutfitsConnection {
|
|
989
998
|
/** A list of `Outfit` objects. */
|
|
@@ -1227,6 +1236,10 @@ export interface Mutation {
|
|
|
1227
1236
|
updateLocation: (UpdateLocationPayload | null);
|
|
1228
1237
|
/** Updates a single `Location` using a unique key and a patch. */
|
|
1229
1238
|
updateLocationByName: (UpdateLocationPayload | null);
|
|
1239
|
+
/** Updates a single `Meta` using its globally unique id and a patch. */
|
|
1240
|
+
updateMeta: (UpdateMetaPayload | null);
|
|
1241
|
+
/** Updates a single `Meta` using a unique key and a patch. */
|
|
1242
|
+
updateMetaById: (UpdateMetaPayload | null);
|
|
1230
1243
|
/** Updates a single `Monster` using its globally unique id and a patch. */
|
|
1231
1244
|
updateMonster: (UpdateMonsterPayload | null);
|
|
1232
1245
|
/** Updates a single `Monster` using a unique key and a patch. */
|
|
@@ -1305,6 +1318,10 @@ export interface Mutation {
|
|
|
1305
1318
|
deleteLocation: (DeleteLocationPayload | null);
|
|
1306
1319
|
/** Deletes a single `Location` using a unique key. */
|
|
1307
1320
|
deleteLocationByName: (DeleteLocationPayload | null);
|
|
1321
|
+
/** Deletes a single `Meta` using its globally unique id. */
|
|
1322
|
+
deleteMeta: (DeleteMetaPayload | null);
|
|
1323
|
+
/** Deletes a single `Meta` using a unique key. */
|
|
1324
|
+
deleteMetaById: (DeleteMetaPayload | null);
|
|
1308
1325
|
/** Deletes a single `Monster` using its globally unique id. */
|
|
1309
1326
|
deleteMonster: (DeleteMonsterPayload | null);
|
|
1310
1327
|
/** Deletes a single `Monster` using a unique key. */
|
|
@@ -1969,6 +1986,21 @@ export interface UpdateLocationPayload {
|
|
|
1969
1986
|
locationEdge: (LocationsEdge | null);
|
|
1970
1987
|
__typename: 'UpdateLocationPayload';
|
|
1971
1988
|
}
|
|
1989
|
+
/** The output of our update `Meta` mutation. */
|
|
1990
|
+
export interface UpdateMetaPayload {
|
|
1991
|
+
/**
|
|
1992
|
+
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
1993
|
+
* unchanged and unused. May be used by a client to track mutations.
|
|
1994
|
+
*/
|
|
1995
|
+
clientMutationId: (Scalars['String'] | null);
|
|
1996
|
+
/** The `Meta` that was updated by this mutation. */
|
|
1997
|
+
meta: (Meta | null);
|
|
1998
|
+
/** Our root query field type. Allows us to run any query from our mutation payload. */
|
|
1999
|
+
query: (Query | null);
|
|
2000
|
+
/** An edge for our `Meta`. May be used by Relay 1. */
|
|
2001
|
+
metaEdge: (MetasEdge | null);
|
|
2002
|
+
__typename: 'UpdateMetaPayload';
|
|
2003
|
+
}
|
|
1972
2004
|
/** The output of our update `Monster` mutation. */
|
|
1973
2005
|
export interface UpdateMonsterPayload {
|
|
1974
2006
|
/**
|
|
@@ -2271,6 +2303,22 @@ export interface DeleteLocationPayload {
|
|
|
2271
2303
|
locationEdge: (LocationsEdge | null);
|
|
2272
2304
|
__typename: 'DeleteLocationPayload';
|
|
2273
2305
|
}
|
|
2306
|
+
/** The output of our delete `Meta` mutation. */
|
|
2307
|
+
export interface DeleteMetaPayload {
|
|
2308
|
+
/**
|
|
2309
|
+
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
2310
|
+
* unchanged and unused. May be used by a client to track mutations.
|
|
2311
|
+
*/
|
|
2312
|
+
clientMutationId: (Scalars['String'] | null);
|
|
2313
|
+
/** The `Meta` that was deleted by this mutation. */
|
|
2314
|
+
meta: (Meta | null);
|
|
2315
|
+
deletedMetaId: (Scalars['ID'] | null);
|
|
2316
|
+
/** Our root query field type. Allows us to run any query from our mutation payload. */
|
|
2317
|
+
query: (Query | null);
|
|
2318
|
+
/** An edge for our `Meta`. May be used by Relay 1. */
|
|
2319
|
+
metaEdge: (MetasEdge | null);
|
|
2320
|
+
__typename: 'DeleteMetaPayload';
|
|
2321
|
+
}
|
|
2274
2322
|
/** The output of our delete `Monster` mutation. */
|
|
2275
2323
|
export interface DeleteMonsterPayload {
|
|
2276
2324
|
/**
|
|
@@ -3027,6 +3075,11 @@ export interface QueryGenqlSelection {
|
|
|
3027
3075
|
name: Scalars['String'];
|
|
3028
3076
|
};
|
|
3029
3077
|
});
|
|
3078
|
+
metaById?: (MetaGenqlSelection & {
|
|
3079
|
+
__args: {
|
|
3080
|
+
id: Scalars['Int'];
|
|
3081
|
+
};
|
|
3082
|
+
});
|
|
3030
3083
|
monsterById?: (MonsterGenqlSelection & {
|
|
3031
3084
|
__args: {
|
|
3032
3085
|
id: Scalars['Int'];
|
|
@@ -3146,6 +3199,13 @@ export interface QueryGenqlSelection {
|
|
|
3146
3199
|
nodeId: Scalars['ID'];
|
|
3147
3200
|
};
|
|
3148
3201
|
});
|
|
3202
|
+
/** Reads a single `Meta` using its globally unique `ID`. */
|
|
3203
|
+
meta?: (MetaGenqlSelection & {
|
|
3204
|
+
__args: {
|
|
3205
|
+
/** The globally unique `ID` to be used in selecting a single `Meta`. */
|
|
3206
|
+
nodeId: Scalars['ID'];
|
|
3207
|
+
};
|
|
3208
|
+
});
|
|
3149
3209
|
/** Reads a single `Monster` using its globally unique `ID`. */
|
|
3150
3210
|
monster?: (MonsterGenqlSelection & {
|
|
3151
3211
|
__args: {
|
|
@@ -3212,6 +3272,7 @@ export interface NodeGenqlSelection {
|
|
|
3212
3272
|
on_ItemModifier?: ItemModifierGenqlSelection;
|
|
3213
3273
|
on_EffectModifier?: EffectModifierGenqlSelection;
|
|
3214
3274
|
on_Effect?: EffectGenqlSelection;
|
|
3275
|
+
on_Meta?: MetaGenqlSelection;
|
|
3215
3276
|
on_SkillModifier?: SkillModifierGenqlSelection;
|
|
3216
3277
|
on_Skill?: SkillGenqlSelection;
|
|
3217
3278
|
__typename?: boolean | number;
|
|
@@ -3787,6 +3848,7 @@ export interface MonsterGenqlSelection {
|
|
|
3787
3848
|
scaling?: boolean | number;
|
|
3788
3849
|
scalingCap?: boolean | number;
|
|
3789
3850
|
scalingFloor?: boolean | number;
|
|
3851
|
+
skeleton?: boolean | number;
|
|
3790
3852
|
skillBlockChance?: boolean | number;
|
|
3791
3853
|
snake?: boolean | number;
|
|
3792
3854
|
spellBlockChance?: boolean | number;
|
|
@@ -3796,6 +3858,7 @@ export interface MonsterGenqlSelection {
|
|
|
3796
3858
|
wanderer?: boolean | number;
|
|
3797
3859
|
wiki?: boolean | number;
|
|
3798
3860
|
wish?: boolean | number;
|
|
3861
|
+
zombie?: boolean | number;
|
|
3799
3862
|
/** Reads and enables pagination through a set of `MonsterDrop`. */
|
|
3800
3863
|
monsterDropsByMonster?: (MonsterDropsConnectionGenqlSelection & {
|
|
3801
3864
|
__args?: {
|
|
@@ -4734,7 +4797,11 @@ export interface MetasConnectionGenqlSelection {
|
|
|
4734
4797
|
__scalar?: boolean | number;
|
|
4735
4798
|
}
|
|
4736
4799
|
export interface MetaGenqlSelection {
|
|
4800
|
+
/** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
|
|
4801
|
+
nodeId?: boolean | number;
|
|
4802
|
+
id?: boolean | number;
|
|
4737
4803
|
lastUpdate?: boolean | number;
|
|
4804
|
+
lastRevision?: boolean | number;
|
|
4738
4805
|
__typename?: boolean | number;
|
|
4739
4806
|
__scalar?: boolean | number;
|
|
4740
4807
|
}
|
|
@@ -4749,8 +4816,12 @@ export interface MetasEdgeGenqlSelection {
|
|
|
4749
4816
|
}
|
|
4750
4817
|
/** A condition to be used against `Meta` object types. All fields are tested for equality and combined with a logical ‘and.’ */
|
|
4751
4818
|
export interface MetaCondition {
|
|
4819
|
+
/** Checks for equality with the object’s `id` field. */
|
|
4820
|
+
id?: (Scalars['Int'] | null);
|
|
4752
4821
|
/** Checks for equality with the object’s `lastUpdate` field. */
|
|
4753
4822
|
lastUpdate?: (Scalars['Datetime'] | null);
|
|
4823
|
+
/** Checks for equality with the object’s `lastRevision` field. */
|
|
4824
|
+
lastRevision?: (Scalars['Int'] | null);
|
|
4754
4825
|
}
|
|
4755
4826
|
/** A connection to a list of `Monster` values. */
|
|
4756
4827
|
export interface MonstersConnectionGenqlSelection {
|
|
@@ -4848,6 +4919,8 @@ export interface MonsterCondition {
|
|
|
4848
4919
|
scalingCap?: (Scalars['String'] | null);
|
|
4849
4920
|
/** Checks for equality with the object’s `scalingFloor` field. */
|
|
4850
4921
|
scalingFloor?: (Scalars['String'] | null);
|
|
4922
|
+
/** Checks for equality with the object’s `skeleton` field. */
|
|
4923
|
+
skeleton?: (Scalars['Boolean'] | null);
|
|
4851
4924
|
/** Checks for equality with the object’s `skillBlockChance` field. */
|
|
4852
4925
|
skillBlockChance?: (Scalars['Float'] | null);
|
|
4853
4926
|
/** Checks for equality with the object’s `snake` field. */
|
|
@@ -4866,6 +4939,8 @@ export interface MonsterCondition {
|
|
|
4866
4939
|
wiki?: (Scalars['String'] | null);
|
|
4867
4940
|
/** Checks for equality with the object’s `wish` field. */
|
|
4868
4941
|
wish?: (Scalars['Boolean'] | null);
|
|
4942
|
+
/** Checks for equality with the object’s `zombie` field. */
|
|
4943
|
+
zombie?: (Scalars['Boolean'] | null);
|
|
4869
4944
|
}
|
|
4870
4945
|
/** A connection to a list of `Outfit` values. */
|
|
4871
4946
|
export interface OutfitsConnectionGenqlSelection {
|
|
@@ -5448,6 +5523,20 @@ export interface MutationGenqlSelection {
|
|
|
5448
5523
|
input: UpdateLocationByNameInput;
|
|
5449
5524
|
};
|
|
5450
5525
|
});
|
|
5526
|
+
/** Updates a single `Meta` using its globally unique id and a patch. */
|
|
5527
|
+
updateMeta?: (UpdateMetaPayloadGenqlSelection & {
|
|
5528
|
+
__args: {
|
|
5529
|
+
/** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
|
|
5530
|
+
input: UpdateMetaInput;
|
|
5531
|
+
};
|
|
5532
|
+
});
|
|
5533
|
+
/** Updates a single `Meta` using a unique key and a patch. */
|
|
5534
|
+
updateMetaById?: (UpdateMetaPayloadGenqlSelection & {
|
|
5535
|
+
__args: {
|
|
5536
|
+
/** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
|
|
5537
|
+
input: UpdateMetaByIdInput;
|
|
5538
|
+
};
|
|
5539
|
+
});
|
|
5451
5540
|
/** Updates a single `Monster` using its globally unique id and a patch. */
|
|
5452
5541
|
updateMonster?: (UpdateMonsterPayloadGenqlSelection & {
|
|
5453
5542
|
__args: {
|
|
@@ -5721,6 +5810,20 @@ export interface MutationGenqlSelection {
|
|
|
5721
5810
|
input: DeleteLocationByNameInput;
|
|
5722
5811
|
};
|
|
5723
5812
|
});
|
|
5813
|
+
/** Deletes a single `Meta` using its globally unique id. */
|
|
5814
|
+
deleteMeta?: (DeleteMetaPayloadGenqlSelection & {
|
|
5815
|
+
__args: {
|
|
5816
|
+
/** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
|
|
5817
|
+
input: DeleteMetaInput;
|
|
5818
|
+
};
|
|
5819
|
+
});
|
|
5820
|
+
/** Deletes a single `Meta` using a unique key. */
|
|
5821
|
+
deleteMetaById?: (DeleteMetaPayloadGenqlSelection & {
|
|
5822
|
+
__args: {
|
|
5823
|
+
/** The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. */
|
|
5824
|
+
input: DeleteMetaByIdInput;
|
|
5825
|
+
};
|
|
5826
|
+
});
|
|
5724
5827
|
/** Deletes a single `Monster` using its globally unique id. */
|
|
5725
5828
|
deleteMonster?: (DeleteMonsterPayloadGenqlSelection & {
|
|
5726
5829
|
__args: {
|
|
@@ -6444,7 +6547,9 @@ export interface CreateMetaInput {
|
|
|
6444
6547
|
}
|
|
6445
6548
|
/** An input for mutations affecting `Meta` */
|
|
6446
6549
|
export interface MetaInput {
|
|
6550
|
+
id?: (Scalars['Int'] | null);
|
|
6447
6551
|
lastUpdate?: (Scalars['Datetime'] | null);
|
|
6552
|
+
lastRevision?: (Scalars['Int'] | null);
|
|
6448
6553
|
}
|
|
6449
6554
|
/** The output of our create `MonsterDrop` mutation. */
|
|
6450
6555
|
export interface CreateMonsterDropPayloadGenqlSelection {
|
|
@@ -6557,6 +6662,7 @@ export interface MonsterInput {
|
|
|
6557
6662
|
scaling: Scalars['String'];
|
|
6558
6663
|
scalingCap: Scalars['String'];
|
|
6559
6664
|
scalingFloor: Scalars['String'];
|
|
6665
|
+
skeleton: Scalars['Boolean'];
|
|
6560
6666
|
skillBlockChance: Scalars['Float'];
|
|
6561
6667
|
snake: Scalars['Boolean'];
|
|
6562
6668
|
spellBlockChance: Scalars['Float'];
|
|
@@ -6566,6 +6672,7 @@ export interface MonsterInput {
|
|
|
6566
6672
|
wanderer: Scalars['Boolean'];
|
|
6567
6673
|
wiki?: (Scalars['String'] | null);
|
|
6568
6674
|
wish: Scalars['Boolean'];
|
|
6675
|
+
zombie: Scalars['Boolean'];
|
|
6569
6676
|
}
|
|
6570
6677
|
/** The output of our create `NativeMonster` mutation. */
|
|
6571
6678
|
export interface CreateNativeMonsterPayloadGenqlSelection {
|
|
@@ -7624,6 +7731,56 @@ export interface UpdateLocationByNameInput {
|
|
|
7624
7731
|
locationPatch: LocationPatch;
|
|
7625
7732
|
name: Scalars['String'];
|
|
7626
7733
|
}
|
|
7734
|
+
/** The output of our update `Meta` mutation. */
|
|
7735
|
+
export interface UpdateMetaPayloadGenqlSelection {
|
|
7736
|
+
/**
|
|
7737
|
+
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
7738
|
+
* unchanged and unused. May be used by a client to track mutations.
|
|
7739
|
+
*/
|
|
7740
|
+
clientMutationId?: boolean | number;
|
|
7741
|
+
/** The `Meta` that was updated by this mutation. */
|
|
7742
|
+
meta?: MetaGenqlSelection;
|
|
7743
|
+
/** Our root query field type. Allows us to run any query from our mutation payload. */
|
|
7744
|
+
query?: QueryGenqlSelection;
|
|
7745
|
+
/** An edge for our `Meta`. May be used by Relay 1. */
|
|
7746
|
+
metaEdge?: (MetasEdgeGenqlSelection & {
|
|
7747
|
+
__args?: {
|
|
7748
|
+
/** The method to use when ordering `Meta`. */
|
|
7749
|
+
orderBy?: (MetasOrderBy[] | null);
|
|
7750
|
+
};
|
|
7751
|
+
});
|
|
7752
|
+
__typename?: boolean | number;
|
|
7753
|
+
__scalar?: boolean | number;
|
|
7754
|
+
}
|
|
7755
|
+
/** All input for the `updateMeta` mutation. */
|
|
7756
|
+
export interface UpdateMetaInput {
|
|
7757
|
+
/**
|
|
7758
|
+
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
7759
|
+
* payload verbatim. May be used to track mutations by the client.
|
|
7760
|
+
*/
|
|
7761
|
+
clientMutationId?: (Scalars['String'] | null);
|
|
7762
|
+
/** The globally unique `ID` which will identify a single `Meta` to be updated. */
|
|
7763
|
+
nodeId: Scalars['ID'];
|
|
7764
|
+
/** An object where the defined keys will be set on the `Meta` being updated. */
|
|
7765
|
+
metaPatch: MetaPatch;
|
|
7766
|
+
}
|
|
7767
|
+
/** Represents an update to a `Meta`. Fields that are set will be updated. */
|
|
7768
|
+
export interface MetaPatch {
|
|
7769
|
+
id?: (Scalars['Int'] | null);
|
|
7770
|
+
lastUpdate?: (Scalars['Datetime'] | null);
|
|
7771
|
+
lastRevision?: (Scalars['Int'] | null);
|
|
7772
|
+
}
|
|
7773
|
+
/** All input for the `updateMetaById` mutation. */
|
|
7774
|
+
export interface UpdateMetaByIdInput {
|
|
7775
|
+
/**
|
|
7776
|
+
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
7777
|
+
* payload verbatim. May be used to track mutations by the client.
|
|
7778
|
+
*/
|
|
7779
|
+
clientMutationId?: (Scalars['String'] | null);
|
|
7780
|
+
/** An object where the defined keys will be set on the `Meta` being updated. */
|
|
7781
|
+
metaPatch: MetaPatch;
|
|
7782
|
+
id: Scalars['Int'];
|
|
7783
|
+
}
|
|
7627
7784
|
/** The output of our update `Monster` mutation. */
|
|
7628
7785
|
export interface UpdateMonsterPayloadGenqlSelection {
|
|
7629
7786
|
/**
|
|
@@ -7695,6 +7852,7 @@ export interface MonsterPatch {
|
|
|
7695
7852
|
scaling?: (Scalars['String'] | null);
|
|
7696
7853
|
scalingCap?: (Scalars['String'] | null);
|
|
7697
7854
|
scalingFloor?: (Scalars['String'] | null);
|
|
7855
|
+
skeleton?: (Scalars['Boolean'] | null);
|
|
7698
7856
|
skillBlockChance?: (Scalars['Float'] | null);
|
|
7699
7857
|
snake?: (Scalars['Boolean'] | null);
|
|
7700
7858
|
spellBlockChance?: (Scalars['Float'] | null);
|
|
@@ -7704,6 +7862,7 @@ export interface MonsterPatch {
|
|
|
7704
7862
|
wanderer?: (Scalars['Boolean'] | null);
|
|
7705
7863
|
wiki?: (Scalars['String'] | null);
|
|
7706
7864
|
wish?: (Scalars['Boolean'] | null);
|
|
7865
|
+
zombie?: (Scalars['Boolean'] | null);
|
|
7707
7866
|
}
|
|
7708
7867
|
/** All input for the `updateMonsterById` mutation. */
|
|
7709
7868
|
export interface UpdateMonsterByIdInput {
|
|
@@ -8520,6 +8679,47 @@ export interface DeleteLocationByNameInput {
|
|
|
8520
8679
|
clientMutationId?: (Scalars['String'] | null);
|
|
8521
8680
|
name: Scalars['String'];
|
|
8522
8681
|
}
|
|
8682
|
+
/** The output of our delete `Meta` mutation. */
|
|
8683
|
+
export interface DeleteMetaPayloadGenqlSelection {
|
|
8684
|
+
/**
|
|
8685
|
+
* The exact same `clientMutationId` that was provided in the mutation input,
|
|
8686
|
+
* unchanged and unused. May be used by a client to track mutations.
|
|
8687
|
+
*/
|
|
8688
|
+
clientMutationId?: boolean | number;
|
|
8689
|
+
/** The `Meta` that was deleted by this mutation. */
|
|
8690
|
+
meta?: MetaGenqlSelection;
|
|
8691
|
+
deletedMetaId?: boolean | number;
|
|
8692
|
+
/** Our root query field type. Allows us to run any query from our mutation payload. */
|
|
8693
|
+
query?: QueryGenqlSelection;
|
|
8694
|
+
/** An edge for our `Meta`. May be used by Relay 1. */
|
|
8695
|
+
metaEdge?: (MetasEdgeGenqlSelection & {
|
|
8696
|
+
__args?: {
|
|
8697
|
+
/** The method to use when ordering `Meta`. */
|
|
8698
|
+
orderBy?: (MetasOrderBy[] | null);
|
|
8699
|
+
};
|
|
8700
|
+
});
|
|
8701
|
+
__typename?: boolean | number;
|
|
8702
|
+
__scalar?: boolean | number;
|
|
8703
|
+
}
|
|
8704
|
+
/** All input for the `deleteMeta` mutation. */
|
|
8705
|
+
export interface DeleteMetaInput {
|
|
8706
|
+
/**
|
|
8707
|
+
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
8708
|
+
* payload verbatim. May be used to track mutations by the client.
|
|
8709
|
+
*/
|
|
8710
|
+
clientMutationId?: (Scalars['String'] | null);
|
|
8711
|
+
/** The globally unique `ID` which will identify a single `Meta` to be deleted. */
|
|
8712
|
+
nodeId: Scalars['ID'];
|
|
8713
|
+
}
|
|
8714
|
+
/** All input for the `deleteMetaById` mutation. */
|
|
8715
|
+
export interface DeleteMetaByIdInput {
|
|
8716
|
+
/**
|
|
8717
|
+
* An arbitrary string value with no semantic meaning. Will be included in the
|
|
8718
|
+
* payload verbatim. May be used to track mutations by the client.
|
|
8719
|
+
*/
|
|
8720
|
+
clientMutationId?: (Scalars['String'] | null);
|
|
8721
|
+
id: Scalars['Int'];
|
|
8722
|
+
}
|
|
8523
8723
|
/** The output of our delete `Monster` mutation. */
|
|
8524
8724
|
export interface DeleteMonsterPayloadGenqlSelection {
|
|
8525
8725
|
/**
|
|
@@ -9137,6 +9337,9 @@ export declare const isUpdateItemPayload: (obj?: {
|
|
|
9137
9337
|
export declare const isUpdateLocationPayload: (obj?: {
|
|
9138
9338
|
__typename?: any;
|
|
9139
9339
|
} | null) => obj is UpdateLocationPayload;
|
|
9340
|
+
export declare const isUpdateMetaPayload: (obj?: {
|
|
9341
|
+
__typename?: any;
|
|
9342
|
+
} | null) => obj is UpdateMetaPayload;
|
|
9140
9343
|
export declare const isUpdateMonsterPayload: (obj?: {
|
|
9141
9344
|
__typename?: any;
|
|
9142
9345
|
} | null) => obj is UpdateMonsterPayload;
|
|
@@ -9191,6 +9394,9 @@ export declare const isDeleteItemPayload: (obj?: {
|
|
|
9191
9394
|
export declare const isDeleteLocationPayload: (obj?: {
|
|
9192
9395
|
__typename?: any;
|
|
9193
9396
|
} | null) => obj is DeleteLocationPayload;
|
|
9397
|
+
export declare const isDeleteMetaPayload: (obj?: {
|
|
9398
|
+
__typename?: any;
|
|
9399
|
+
} | null) => obj is DeleteMetaPayload;
|
|
9194
9400
|
export declare const isDeleteMonsterPayload: (obj?: {
|
|
9195
9401
|
__typename?: any;
|
|
9196
9402
|
} | null) => obj is DeleteMonsterPayload;
|
|
@@ -9643,8 +9849,14 @@ export declare const enumLocationsOrderBy: {
|
|
|
9643
9849
|
};
|
|
9644
9850
|
export declare const enumMetasOrderBy: {
|
|
9645
9851
|
NATURAL: "NATURAL";
|
|
9852
|
+
ID_ASC: "ID_ASC";
|
|
9853
|
+
ID_DESC: "ID_DESC";
|
|
9646
9854
|
LAST_UPDATE_ASC: "LAST_UPDATE_ASC";
|
|
9647
9855
|
LAST_UPDATE_DESC: "LAST_UPDATE_DESC";
|
|
9856
|
+
LAST_REVISION_ASC: "LAST_REVISION_ASC";
|
|
9857
|
+
LAST_REVISION_DESC: "LAST_REVISION_DESC";
|
|
9858
|
+
PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
|
|
9859
|
+
PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
|
|
9648
9860
|
};
|
|
9649
9861
|
export declare const enumMonstersOrderBy: {
|
|
9650
9862
|
NATURAL: "NATURAL";
|
|
@@ -9720,6 +9932,8 @@ export declare const enumMonstersOrderBy: {
|
|
|
9720
9932
|
SCALING_CAP_DESC: "SCALING_CAP_DESC";
|
|
9721
9933
|
SCALING_FLOOR_ASC: "SCALING_FLOOR_ASC";
|
|
9722
9934
|
SCALING_FLOOR_DESC: "SCALING_FLOOR_DESC";
|
|
9935
|
+
SKELETON_ASC: "SKELETON_ASC";
|
|
9936
|
+
SKELETON_DESC: "SKELETON_DESC";
|
|
9723
9937
|
SKILL_BLOCK_CHANCE_ASC: "SKILL_BLOCK_CHANCE_ASC";
|
|
9724
9938
|
SKILL_BLOCK_CHANCE_DESC: "SKILL_BLOCK_CHANCE_DESC";
|
|
9725
9939
|
SNAKE_ASC: "SNAKE_ASC";
|
|
@@ -9738,6 +9952,8 @@ export declare const enumMonstersOrderBy: {
|
|
|
9738
9952
|
WIKI_DESC: "WIKI_DESC";
|
|
9739
9953
|
WISH_ASC: "WISH_ASC";
|
|
9740
9954
|
WISH_DESC: "WISH_DESC";
|
|
9955
|
+
ZOMBIE_ASC: "ZOMBIE_ASC";
|
|
9956
|
+
ZOMBIE_DESC: "ZOMBIE_DESC";
|
|
9741
9957
|
PRIMARY_KEY_ASC: "PRIMARY_KEY_ASC";
|
|
9742
9958
|
PRIMARY_KEY_DESC: "PRIMARY_KEY_DESC";
|
|
9743
9959
|
};
|
package/dist/schema.js
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
7
|
exports.isEffectModifiersEdge = exports.isEffect = exports.isEffectModifier = exports.isEffectModifiersConnection = exports.isConsumablesEdge = exports.isConsumablesConnection = exports.isConcoctionsEdge = exports.isIngredientsEdge = exports.isIngredient = exports.isIngredientsConnection = exports.isItemModifier = exports.isZapGroupItemsEdge = exports.isZapGroup = exports.isZapGroupItem = exports.isZapGroupItemsConnection = exports.isFoldablesEdge = exports.isFoldGroup = exports.isFoldable = exports.isFoldablesConnection = exports.isOutfitEquipmentsEdge = exports.isOutfitTreatsEdge = exports.isOutfitTreat = exports.isOutfitTreatsConnection = exports.isOutfit = exports.isOutfitEquipment = exports.isOutfitEquipmentsConnection = exports.isMonsterDropsEdge = exports.isNativeMonstersEdge = exports.isLocation = exports.isNativeMonster = exports.isNativeMonstersConnection = exports.isMonster = exports.isMonsterDrop = exports.isMonsterDropsConnection = exports.isFamiliarsEdge = exports.isFamiliarModifier = exports.isFamiliar = exports.isFamiliarsConnection = exports.isConsumable = exports.isEquipment = exports.isItem = exports.isConcoction = exports.isConcoctionsConnection = exports.isPageInfo = exports.isClassesEdge = exports.isPath = exports.isClass = exports.isClassesConnection = exports.isNode = exports.isQuery = void 0;
|
|
8
8
|
exports.isCreateNativeMonsterPayload = exports.isCreateMonsterPayload = exports.isCreateMonsterDropPayload = exports.isCreateMetaPayload = exports.isCreateLocationPayload = exports.isCreateItemPayload = exports.isCreateItemModifierPayload = exports.isCreateIngredientPayload = exports.isCreateFoldablePayload = exports.isCreateFoldGroupPayload = exports.isCreateFamiliarPayload = exports.isCreateFamiliarModifierPayload = exports.isCreateEquipmentPayload = exports.isCreateEffectPayload = exports.isCreateEffectModifierPayload = exports.isCreateConsumablePayload = exports.isCreateConcoctionPayload = exports.isCreateClassPayload = exports.isMutation = exports.isZapGroupsEdge = exports.isZapGroupsConnection = exports.isSkillsEdge = exports.isSkillsConnection = exports.isSkillModifiersEdge = exports.isSkill = exports.isSkillModifier = exports.isSkillModifiersConnection = exports.isPathsEdge = exports.isPathsConnection = exports.isOutfitsEdge = exports.isOutfitsConnection = exports.isMonstersEdge = exports.isMonstersConnection = exports.isMetasEdge = exports.isMeta = exports.isMetasConnection = exports.isLocationsEdge = exports.isLocationsConnection = exports.isItemsEdge = exports.isItemsConnection = exports.isItemModifiersEdge = exports.isItemModifiersConnection = exports.isFoldGroupsEdge = exports.isFoldGroupsConnection = exports.isFamiliarModifiersEdge = exports.isFamiliarModifiersConnection = exports.isEquipmentEdge = exports.isEquipmentConnection = exports.isEffectsEdge = exports.isEffectsConnection = void 0;
|
|
9
|
-
exports.
|
|
10
|
-
exports.enumZapGroupsOrderBy = exports.enumSkillsOrderBy = exports.enumSkillModifiersOrderBy = exports.enumSkillTag = exports.enumPathsOrderBy = exports.enumOutfitsOrderBy = exports.enumMonstersOrderBy = exports.enumMetasOrderBy = exports.enumLocationsOrderBy = exports.enumItemsOrderBy = exports.enumItemModifiersOrderBy = exports.enumFoldGroupsOrderBy = exports.enumFamiliarModifiersOrderBy = exports.enumEquipmentOrderBy = exports.enumEffectsOrderBy = exports.enumEffectModifiersOrderBy = exports.enumEffectQuality = exports.enumConsumablesOrderBy = exports.enumIngredientsOrderBy = exports.enumConcoctionsOrderBy = exports.enumZapGroupItemsOrderBy = exports.enumFoldablesOrderBy = exports.enumOutfitTreatsOrderBy = exports.enumOutfitEquipmentsOrderBy = exports.enumNativeMonstersOrderBy = exports.enumLocationEnvironment = exports.enumLocationDifficulty = exports.enumMonsterDropsOrderBy = exports.enumMonsterElement = void 0;
|
|
9
|
+
exports.enumFamiliarCategory = exports.enumConsumableQuality = exports.enumItemUse = exports.enumClassesOrderBy = exports.isDeleteZapGroupPayload = exports.isDeleteSkillPayload = exports.isDeleteSkillModifierPayload = exports.isDeletePathPayload = exports.isDeleteOutfitPayload = exports.isDeleteMonsterPayload = exports.isDeleteMetaPayload = exports.isDeleteLocationPayload = exports.isDeleteItemPayload = exports.isDeleteItemModifierPayload = exports.isDeleteFoldGroupPayload = exports.isDeleteFamiliarPayload = exports.isDeleteFamiliarModifierPayload = exports.isDeleteEquipmentPayload = exports.isDeleteEffectPayload = exports.isDeleteEffectModifierPayload = exports.isDeleteConsumablePayload = exports.isDeleteConcoctionPayload = exports.isDeleteClassPayload = exports.isUpdateZapGroupPayload = exports.isUpdateSkillPayload = exports.isUpdateSkillModifierPayload = exports.isUpdatePathPayload = exports.isUpdateOutfitPayload = exports.isUpdateMonsterPayload = exports.isUpdateMetaPayload = exports.isUpdateLocationPayload = exports.isUpdateItemPayload = exports.isUpdateItemModifierPayload = exports.isUpdateFoldGroupPayload = exports.isUpdateFamiliarPayload = exports.isUpdateFamiliarModifierPayload = exports.isUpdateEquipmentPayload = exports.isUpdateEffectPayload = exports.isUpdateEffectModifierPayload = exports.isUpdateConsumablePayload = exports.isUpdateConcoctionPayload = exports.isUpdateClassPayload = exports.isCreateZapGroupPayload = exports.isCreateZapGroupItemPayload = exports.isCreateSkillPayload = exports.isCreateSkillModifierPayload = exports.isCreatePathPayload = exports.isCreateOutfitPayload = exports.isCreateOutfitTreatPayload = exports.isCreateOutfitEquipmentPayload = void 0;
|
|
10
|
+
exports.enumZapGroupsOrderBy = exports.enumSkillsOrderBy = exports.enumSkillModifiersOrderBy = exports.enumSkillTag = exports.enumPathsOrderBy = exports.enumOutfitsOrderBy = exports.enumMonstersOrderBy = exports.enumMetasOrderBy = exports.enumLocationsOrderBy = exports.enumItemsOrderBy = exports.enumItemModifiersOrderBy = exports.enumFoldGroupsOrderBy = exports.enumFamiliarModifiersOrderBy = exports.enumEquipmentOrderBy = exports.enumEffectsOrderBy = exports.enumEffectModifiersOrderBy = exports.enumEffectQuality = exports.enumConsumablesOrderBy = exports.enumIngredientsOrderBy = exports.enumConcoctionsOrderBy = exports.enumZapGroupItemsOrderBy = exports.enumFoldablesOrderBy = exports.enumOutfitTreatsOrderBy = exports.enumOutfitEquipmentsOrderBy = exports.enumNativeMonstersOrderBy = exports.enumLocationEnvironment = exports.enumLocationDifficulty = exports.enumMonsterDropsOrderBy = exports.enumMonsterElement = exports.enumMonsterDropCategory = exports.enumFamiliarsOrderBy = void 0;
|
|
11
11
|
const Query_possibleTypes = ['Query'];
|
|
12
12
|
const isQuery = (obj) => {
|
|
13
13
|
if (!(obj === null || obj === void 0 ? void 0 : obj.__typename))
|
|
@@ -15,7 +15,7 @@ const isQuery = (obj) => {
|
|
|
15
15
|
return Query_possibleTypes.includes(obj.__typename);
|
|
16
16
|
};
|
|
17
17
|
exports.isQuery = isQuery;
|
|
18
|
-
const Node_possibleTypes = ['Query', 'Class', 'Path', 'Concoction', 'Item', 'Equipment', 'Consumable', 'Familiar', 'FamiliarModifier', 'Monster', 'Location', 'Outfit', 'FoldGroup', 'ZapGroup', 'ItemModifier', 'EffectModifier', 'Effect', 'SkillModifier', 'Skill'];
|
|
18
|
+
const Node_possibleTypes = ['Query', 'Class', 'Path', 'Concoction', 'Item', 'Equipment', 'Consumable', 'Familiar', 'FamiliarModifier', 'Monster', 'Location', 'Outfit', 'FoldGroup', 'ZapGroup', 'ItemModifier', 'EffectModifier', 'Effect', 'Meta', 'SkillModifier', 'Skill'];
|
|
19
19
|
const isNode = (obj) => {
|
|
20
20
|
if (!(obj === null || obj === void 0 ? void 0 : obj.__typename))
|
|
21
21
|
throw new Error('__typename is missing in "isNode"');
|
|
@@ -848,6 +848,13 @@ const isUpdateLocationPayload = (obj) => {
|
|
|
848
848
|
return UpdateLocationPayload_possibleTypes.includes(obj.__typename);
|
|
849
849
|
};
|
|
850
850
|
exports.isUpdateLocationPayload = isUpdateLocationPayload;
|
|
851
|
+
const UpdateMetaPayload_possibleTypes = ['UpdateMetaPayload'];
|
|
852
|
+
const isUpdateMetaPayload = (obj) => {
|
|
853
|
+
if (!(obj === null || obj === void 0 ? void 0 : obj.__typename))
|
|
854
|
+
throw new Error('__typename is missing in "isUpdateMetaPayload"');
|
|
855
|
+
return UpdateMetaPayload_possibleTypes.includes(obj.__typename);
|
|
856
|
+
};
|
|
857
|
+
exports.isUpdateMetaPayload = isUpdateMetaPayload;
|
|
851
858
|
const UpdateMonsterPayload_possibleTypes = ['UpdateMonsterPayload'];
|
|
852
859
|
const isUpdateMonsterPayload = (obj) => {
|
|
853
860
|
if (!(obj === null || obj === void 0 ? void 0 : obj.__typename))
|
|
@@ -974,6 +981,13 @@ const isDeleteLocationPayload = (obj) => {
|
|
|
974
981
|
return DeleteLocationPayload_possibleTypes.includes(obj.__typename);
|
|
975
982
|
};
|
|
976
983
|
exports.isDeleteLocationPayload = isDeleteLocationPayload;
|
|
984
|
+
const DeleteMetaPayload_possibleTypes = ['DeleteMetaPayload'];
|
|
985
|
+
const isDeleteMetaPayload = (obj) => {
|
|
986
|
+
if (!(obj === null || obj === void 0 ? void 0 : obj.__typename))
|
|
987
|
+
throw new Error('__typename is missing in "isDeleteMetaPayload"');
|
|
988
|
+
return DeleteMetaPayload_possibleTypes.includes(obj.__typename);
|
|
989
|
+
};
|
|
990
|
+
exports.isDeleteMetaPayload = isDeleteMetaPayload;
|
|
977
991
|
const DeleteMonsterPayload_possibleTypes = ['DeleteMonsterPayload'];
|
|
978
992
|
const isDeleteMonsterPayload = (obj) => {
|
|
979
993
|
if (!(obj === null || obj === void 0 ? void 0 : obj.__typename))
|
|
@@ -1450,8 +1464,14 @@ exports.enumLocationsOrderBy = {
|
|
|
1450
1464
|
};
|
|
1451
1465
|
exports.enumMetasOrderBy = {
|
|
1452
1466
|
NATURAL: 'NATURAL',
|
|
1467
|
+
ID_ASC: 'ID_ASC',
|
|
1468
|
+
ID_DESC: 'ID_DESC',
|
|
1453
1469
|
LAST_UPDATE_ASC: 'LAST_UPDATE_ASC',
|
|
1454
|
-
LAST_UPDATE_DESC: 'LAST_UPDATE_DESC'
|
|
1470
|
+
LAST_UPDATE_DESC: 'LAST_UPDATE_DESC',
|
|
1471
|
+
LAST_REVISION_ASC: 'LAST_REVISION_ASC',
|
|
1472
|
+
LAST_REVISION_DESC: 'LAST_REVISION_DESC',
|
|
1473
|
+
PRIMARY_KEY_ASC: 'PRIMARY_KEY_ASC',
|
|
1474
|
+
PRIMARY_KEY_DESC: 'PRIMARY_KEY_DESC'
|
|
1455
1475
|
};
|
|
1456
1476
|
exports.enumMonstersOrderBy = {
|
|
1457
1477
|
NATURAL: 'NATURAL',
|
|
@@ -1527,6 +1547,8 @@ exports.enumMonstersOrderBy = {
|
|
|
1527
1547
|
SCALING_CAP_DESC: 'SCALING_CAP_DESC',
|
|
1528
1548
|
SCALING_FLOOR_ASC: 'SCALING_FLOOR_ASC',
|
|
1529
1549
|
SCALING_FLOOR_DESC: 'SCALING_FLOOR_DESC',
|
|
1550
|
+
SKELETON_ASC: 'SKELETON_ASC',
|
|
1551
|
+
SKELETON_DESC: 'SKELETON_DESC',
|
|
1530
1552
|
SKILL_BLOCK_CHANCE_ASC: 'SKILL_BLOCK_CHANCE_ASC',
|
|
1531
1553
|
SKILL_BLOCK_CHANCE_DESC: 'SKILL_BLOCK_CHANCE_DESC',
|
|
1532
1554
|
SNAKE_ASC: 'SNAKE_ASC',
|
|
@@ -1545,6 +1567,8 @@ exports.enumMonstersOrderBy = {
|
|
|
1545
1567
|
WIKI_DESC: 'WIKI_DESC',
|
|
1546
1568
|
WISH_ASC: 'WISH_ASC',
|
|
1547
1569
|
WISH_DESC: 'WISH_DESC',
|
|
1570
|
+
ZOMBIE_ASC: 'ZOMBIE_ASC',
|
|
1571
|
+
ZOMBIE_DESC: 'ZOMBIE_DESC',
|
|
1548
1572
|
PRIMARY_KEY_ASC: 'PRIMARY_KEY_ASC',
|
|
1549
1573
|
PRIMARY_KEY_DESC: 'PRIMARY_KEY_DESC'
|
|
1550
1574
|
};
|