data-of-loathing 2.4.0 → 2.5.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 +9 -9
- package/dist/types.js +3 -3
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -368,7 +368,7 @@ export interface MonsterDropsConnection {
|
|
|
368
368
|
export interface MonsterDrop {
|
|
369
369
|
monster: Scalars['Int'];
|
|
370
370
|
item: Scalars['Int'];
|
|
371
|
-
rate: Scalars['
|
|
371
|
+
rate: Scalars['Float'];
|
|
372
372
|
category: (MonsterDropCategory | null);
|
|
373
373
|
/** Reads a single `Monster` that is related to this `MonsterDrop`. */
|
|
374
374
|
monsterByMonster: (Monster | null);
|
|
@@ -386,9 +386,9 @@ export interface Monster {
|
|
|
386
386
|
boss: Scalars['Boolean'];
|
|
387
387
|
defence: Scalars['String'];
|
|
388
388
|
drippy: Scalars['Boolean'];
|
|
389
|
-
element: MonsterElement;
|
|
390
|
-
elementalAttack: MonsterElement;
|
|
391
|
-
elementalDefence: MonsterElement;
|
|
389
|
+
element: (MonsterElement | null);
|
|
390
|
+
elementalAttack: (MonsterElement | null);
|
|
391
|
+
elementalDefence: (MonsterElement | null);
|
|
392
392
|
elementalResistance: Scalars['String'];
|
|
393
393
|
experience: (Scalars['String'] | null);
|
|
394
394
|
free: Scalars['Boolean'];
|
|
@@ -3627,7 +3627,7 @@ export interface MonsterDropCondition {
|
|
|
3627
3627
|
/** Checks for equality with the object’s `item` field. */
|
|
3628
3628
|
item?: (Scalars['Int'] | null);
|
|
3629
3629
|
/** Checks for equality with the object’s `rate` field. */
|
|
3630
|
-
rate?: (Scalars['
|
|
3630
|
+
rate?: (Scalars['Float'] | null);
|
|
3631
3631
|
/** Checks for equality with the object’s `category` field. */
|
|
3632
3632
|
category?: (MonsterDropCategory | null);
|
|
3633
3633
|
}
|
|
@@ -6116,7 +6116,7 @@ export interface CreateMonsterDropInput {
|
|
|
6116
6116
|
export interface MonsterDropInput {
|
|
6117
6117
|
monster: Scalars['Int'];
|
|
6118
6118
|
item: Scalars['Int'];
|
|
6119
|
-
rate: Scalars['
|
|
6119
|
+
rate: Scalars['Float'];
|
|
6120
6120
|
category?: (MonsterDropCategory | null);
|
|
6121
6121
|
}
|
|
6122
6122
|
/** The output of our create `Monster` mutation. */
|
|
@@ -6158,9 +6158,9 @@ export interface MonsterInput {
|
|
|
6158
6158
|
boss: Scalars['Boolean'];
|
|
6159
6159
|
defence: Scalars['String'];
|
|
6160
6160
|
drippy: Scalars['Boolean'];
|
|
6161
|
-
element
|
|
6162
|
-
elementalAttack
|
|
6163
|
-
elementalDefence
|
|
6161
|
+
element?: (MonsterElement | null);
|
|
6162
|
+
elementalAttack?: (MonsterElement | null);
|
|
6163
|
+
elementalDefence?: (MonsterElement | null);
|
|
6164
6164
|
elementalResistance: Scalars['String'];
|
|
6165
6165
|
experience?: (Scalars['String'] | null);
|
|
6166
6166
|
free: Scalars['Boolean'];
|
package/dist/types.js
CHANGED
|
@@ -1894,7 +1894,7 @@ exports.default = {
|
|
|
1894
1894
|
5
|
|
1895
1895
|
],
|
|
1896
1896
|
"rate": [
|
|
1897
|
-
|
|
1897
|
+
21
|
|
1898
1898
|
],
|
|
1899
1899
|
"category": [
|
|
1900
1900
|
32
|
|
@@ -2117,7 +2117,7 @@ exports.default = {
|
|
|
2117
2117
|
5
|
|
2118
2118
|
],
|
|
2119
2119
|
"rate": [
|
|
2120
|
-
|
|
2120
|
+
21
|
|
2121
2121
|
],
|
|
2122
2122
|
"category": [
|
|
2123
2123
|
32
|
|
@@ -5575,7 +5575,7 @@ exports.default = {
|
|
|
5575
5575
|
5
|
|
5576
5576
|
],
|
|
5577
5577
|
"rate": [
|
|
5578
|
-
|
|
5578
|
+
21
|
|
5579
5579
|
],
|
|
5580
5580
|
"category": [
|
|
5581
5581
|
32
|