@clawconquest/client 1.14.0 → 1.16.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/index.cjs +35 -2
- package/dist/index.d.cts +26 -4
- package/dist/index.d.ts +26 -4
- package/dist/index.js +35 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1243,7 +1243,7 @@ var types_default = {
|
|
|
1243
1243
|
"is_spawn_zone": [
|
|
1244
1244
|
3
|
|
1245
1245
|
],
|
|
1246
|
-
"
|
|
1246
|
+
"owner_clan_id": [
|
|
1247
1247
|
44
|
|
1248
1248
|
],
|
|
1249
1249
|
"q": [
|
|
@@ -1347,18 +1347,42 @@ var types_default = {
|
|
|
1347
1347
|
]
|
|
1348
1348
|
},
|
|
1349
1349
|
"PublicClaw": {
|
|
1350
|
+
"aggression": [
|
|
1351
|
+
17
|
|
1352
|
+
],
|
|
1350
1353
|
"bio": [
|
|
1351
1354
|
44
|
|
1352
1355
|
],
|
|
1356
|
+
"created_at": [
|
|
1357
|
+
14
|
|
1358
|
+
],
|
|
1359
|
+
"deception": [
|
|
1360
|
+
17
|
|
1361
|
+
],
|
|
1362
|
+
"food": [
|
|
1363
|
+
17
|
|
1364
|
+
],
|
|
1353
1365
|
"id": [
|
|
1354
1366
|
21
|
|
1355
1367
|
],
|
|
1356
1368
|
"is_alive": [
|
|
1357
1369
|
3
|
|
1358
1370
|
],
|
|
1371
|
+
"is_molting": [
|
|
1372
|
+
3
|
|
1373
|
+
],
|
|
1359
1374
|
"level": [
|
|
1360
1375
|
22
|
|
1361
1376
|
],
|
|
1377
|
+
"loyalty": [
|
|
1378
|
+
17
|
|
1379
|
+
],
|
|
1380
|
+
"minerals": [
|
|
1381
|
+
17
|
|
1382
|
+
],
|
|
1383
|
+
"molt_ticks_remaining": [
|
|
1384
|
+
22
|
|
1385
|
+
],
|
|
1362
1386
|
"name": [
|
|
1363
1387
|
44
|
|
1364
1388
|
],
|
|
@@ -1371,9 +1395,15 @@ var types_default = {
|
|
|
1371
1395
|
"shell_tier": [
|
|
1372
1396
|
22
|
|
1373
1397
|
],
|
|
1398
|
+
"soft_shell_curse_ticks_remaining": [
|
|
1399
|
+
22
|
|
1400
|
+
],
|
|
1374
1401
|
"species": [
|
|
1375
1402
|
41
|
|
1376
1403
|
],
|
|
1404
|
+
"territoriality": [
|
|
1405
|
+
17
|
|
1406
|
+
],
|
|
1377
1407
|
"xp": [
|
|
1378
1408
|
22
|
|
1379
1409
|
],
|
|
@@ -1639,6 +1669,9 @@ var types_default = {
|
|
|
1639
1669
|
]
|
|
1640
1670
|
},
|
|
1641
1671
|
"Siege": {
|
|
1672
|
+
"attacker_clan_id": [
|
|
1673
|
+
44
|
|
1674
|
+
],
|
|
1642
1675
|
"attacker_claw_id": [
|
|
1643
1676
|
44
|
|
1644
1677
|
],
|
|
@@ -1648,7 +1681,7 @@ var types_default = {
|
|
|
1648
1681
|
"created_at": [
|
|
1649
1682
|
14
|
|
1650
1683
|
],
|
|
1651
|
-
"
|
|
1684
|
+
"defender_clan_id": [
|
|
1652
1685
|
44
|
|
1653
1686
|
],
|
|
1654
1687
|
"defender_pool_id": [
|
package/dist/index.d.cts
CHANGED
|
@@ -149,7 +149,7 @@ interface Pool {
|
|
|
149
149
|
fortification: (Scalars['Int'] | null);
|
|
150
150
|
id: Scalars['ID'];
|
|
151
151
|
is_spawn_zone: Scalars['Boolean'];
|
|
152
|
-
|
|
152
|
+
owner_clan_id: (Scalars['String'] | null);
|
|
153
153
|
q: Scalars['Int'];
|
|
154
154
|
r: Scalars['Int'];
|
|
155
155
|
region_id: Scalars['Int'];
|
|
@@ -183,15 +183,25 @@ interface PrivateClaw {
|
|
|
183
183
|
__typename: 'PrivateClaw';
|
|
184
184
|
}
|
|
185
185
|
interface PublicClaw {
|
|
186
|
+
aggression: Scalars['Float'];
|
|
186
187
|
bio: (Scalars['String'] | null);
|
|
188
|
+
created_at: Scalars['DateTime'];
|
|
189
|
+
deception: Scalars['Float'];
|
|
190
|
+
food: Scalars['Float'];
|
|
187
191
|
id: Scalars['ID'];
|
|
188
192
|
is_alive: Scalars['Boolean'];
|
|
193
|
+
is_molting: Scalars['Boolean'];
|
|
189
194
|
level: Scalars['Int'];
|
|
195
|
+
loyalty: Scalars['Float'];
|
|
196
|
+
minerals: Scalars['Float'];
|
|
197
|
+
molt_ticks_remaining: Scalars['Int'];
|
|
190
198
|
name: Scalars['String'];
|
|
191
199
|
profile_emoji: (Scalars['String'] | null);
|
|
192
200
|
scent: Scalars['Int'];
|
|
193
201
|
shell_tier: Scalars['Int'];
|
|
202
|
+
soft_shell_curse_ticks_remaining: Scalars['Int'];
|
|
194
203
|
species: Species;
|
|
204
|
+
territoriality: Scalars['Float'];
|
|
195
205
|
xp: Scalars['Int'];
|
|
196
206
|
__typename: 'PublicClaw';
|
|
197
207
|
}
|
|
@@ -242,10 +252,11 @@ interface Relationship {
|
|
|
242
252
|
__typename: 'Relationship';
|
|
243
253
|
}
|
|
244
254
|
interface Siege {
|
|
255
|
+
attacker_clan_id: (Scalars['String'] | null);
|
|
245
256
|
attacker_claw_id: Scalars['String'];
|
|
246
257
|
attacker_pool_id: Scalars['String'];
|
|
247
258
|
created_at: Scalars['DateTime'];
|
|
248
|
-
|
|
259
|
+
defender_clan_id: (Scalars['String'] | null);
|
|
249
260
|
defender_pool_id: Scalars['String'];
|
|
250
261
|
ended_at_tick: (Scalars['Int'] | null);
|
|
251
262
|
id: Scalars['ID'];
|
|
@@ -568,7 +579,7 @@ interface PoolGenqlSelection {
|
|
|
568
579
|
fortification?: boolean | number;
|
|
569
580
|
id?: boolean | number;
|
|
570
581
|
is_spawn_zone?: boolean | number;
|
|
571
|
-
|
|
582
|
+
owner_clan_id?: boolean | number;
|
|
572
583
|
q?: boolean | number;
|
|
573
584
|
r?: boolean | number;
|
|
574
585
|
region_id?: boolean | number;
|
|
@@ -607,15 +618,25 @@ interface ProposeClanPactInput {
|
|
|
607
618
|
type: ClanPactType;
|
|
608
619
|
}
|
|
609
620
|
interface PublicClawGenqlSelection {
|
|
621
|
+
aggression?: boolean | number;
|
|
610
622
|
bio?: boolean | number;
|
|
623
|
+
created_at?: boolean | number;
|
|
624
|
+
deception?: boolean | number;
|
|
625
|
+
food?: boolean | number;
|
|
611
626
|
id?: boolean | number;
|
|
612
627
|
is_alive?: boolean | number;
|
|
628
|
+
is_molting?: boolean | number;
|
|
613
629
|
level?: boolean | number;
|
|
630
|
+
loyalty?: boolean | number;
|
|
631
|
+
minerals?: boolean | number;
|
|
632
|
+
molt_ticks_remaining?: boolean | number;
|
|
614
633
|
name?: boolean | number;
|
|
615
634
|
profile_emoji?: boolean | number;
|
|
616
635
|
scent?: boolean | number;
|
|
617
636
|
shell_tier?: boolean | number;
|
|
637
|
+
soft_shell_curse_ticks_remaining?: boolean | number;
|
|
618
638
|
species?: boolean | number;
|
|
639
|
+
territoriality?: boolean | number;
|
|
619
640
|
xp?: boolean | number;
|
|
620
641
|
__typename?: boolean | number;
|
|
621
642
|
__scalar?: boolean | number;
|
|
@@ -739,10 +760,11 @@ interface SendWhisperInput {
|
|
|
739
760
|
receiver_id: Scalars['String'];
|
|
740
761
|
}
|
|
741
762
|
interface SiegeGenqlSelection {
|
|
763
|
+
attacker_clan_id?: boolean | number;
|
|
742
764
|
attacker_claw_id?: boolean | number;
|
|
743
765
|
attacker_pool_id?: boolean | number;
|
|
744
766
|
created_at?: boolean | number;
|
|
745
|
-
|
|
767
|
+
defender_clan_id?: boolean | number;
|
|
746
768
|
defender_pool_id?: boolean | number;
|
|
747
769
|
ended_at_tick?: boolean | number;
|
|
748
770
|
id?: boolean | number;
|
package/dist/index.d.ts
CHANGED
|
@@ -149,7 +149,7 @@ interface Pool {
|
|
|
149
149
|
fortification: (Scalars['Int'] | null);
|
|
150
150
|
id: Scalars['ID'];
|
|
151
151
|
is_spawn_zone: Scalars['Boolean'];
|
|
152
|
-
|
|
152
|
+
owner_clan_id: (Scalars['String'] | null);
|
|
153
153
|
q: Scalars['Int'];
|
|
154
154
|
r: Scalars['Int'];
|
|
155
155
|
region_id: Scalars['Int'];
|
|
@@ -183,15 +183,25 @@ interface PrivateClaw {
|
|
|
183
183
|
__typename: 'PrivateClaw';
|
|
184
184
|
}
|
|
185
185
|
interface PublicClaw {
|
|
186
|
+
aggression: Scalars['Float'];
|
|
186
187
|
bio: (Scalars['String'] | null);
|
|
188
|
+
created_at: Scalars['DateTime'];
|
|
189
|
+
deception: Scalars['Float'];
|
|
190
|
+
food: Scalars['Float'];
|
|
187
191
|
id: Scalars['ID'];
|
|
188
192
|
is_alive: Scalars['Boolean'];
|
|
193
|
+
is_molting: Scalars['Boolean'];
|
|
189
194
|
level: Scalars['Int'];
|
|
195
|
+
loyalty: Scalars['Float'];
|
|
196
|
+
minerals: Scalars['Float'];
|
|
197
|
+
molt_ticks_remaining: Scalars['Int'];
|
|
190
198
|
name: Scalars['String'];
|
|
191
199
|
profile_emoji: (Scalars['String'] | null);
|
|
192
200
|
scent: Scalars['Int'];
|
|
193
201
|
shell_tier: Scalars['Int'];
|
|
202
|
+
soft_shell_curse_ticks_remaining: Scalars['Int'];
|
|
194
203
|
species: Species;
|
|
204
|
+
territoriality: Scalars['Float'];
|
|
195
205
|
xp: Scalars['Int'];
|
|
196
206
|
__typename: 'PublicClaw';
|
|
197
207
|
}
|
|
@@ -242,10 +252,11 @@ interface Relationship {
|
|
|
242
252
|
__typename: 'Relationship';
|
|
243
253
|
}
|
|
244
254
|
interface Siege {
|
|
255
|
+
attacker_clan_id: (Scalars['String'] | null);
|
|
245
256
|
attacker_claw_id: Scalars['String'];
|
|
246
257
|
attacker_pool_id: Scalars['String'];
|
|
247
258
|
created_at: Scalars['DateTime'];
|
|
248
|
-
|
|
259
|
+
defender_clan_id: (Scalars['String'] | null);
|
|
249
260
|
defender_pool_id: Scalars['String'];
|
|
250
261
|
ended_at_tick: (Scalars['Int'] | null);
|
|
251
262
|
id: Scalars['ID'];
|
|
@@ -568,7 +579,7 @@ interface PoolGenqlSelection {
|
|
|
568
579
|
fortification?: boolean | number;
|
|
569
580
|
id?: boolean | number;
|
|
570
581
|
is_spawn_zone?: boolean | number;
|
|
571
|
-
|
|
582
|
+
owner_clan_id?: boolean | number;
|
|
572
583
|
q?: boolean | number;
|
|
573
584
|
r?: boolean | number;
|
|
574
585
|
region_id?: boolean | number;
|
|
@@ -607,15 +618,25 @@ interface ProposeClanPactInput {
|
|
|
607
618
|
type: ClanPactType;
|
|
608
619
|
}
|
|
609
620
|
interface PublicClawGenqlSelection {
|
|
621
|
+
aggression?: boolean | number;
|
|
610
622
|
bio?: boolean | number;
|
|
623
|
+
created_at?: boolean | number;
|
|
624
|
+
deception?: boolean | number;
|
|
625
|
+
food?: boolean | number;
|
|
611
626
|
id?: boolean | number;
|
|
612
627
|
is_alive?: boolean | number;
|
|
628
|
+
is_molting?: boolean | number;
|
|
613
629
|
level?: boolean | number;
|
|
630
|
+
loyalty?: boolean | number;
|
|
631
|
+
minerals?: boolean | number;
|
|
632
|
+
molt_ticks_remaining?: boolean | number;
|
|
614
633
|
name?: boolean | number;
|
|
615
634
|
profile_emoji?: boolean | number;
|
|
616
635
|
scent?: boolean | number;
|
|
617
636
|
shell_tier?: boolean | number;
|
|
637
|
+
soft_shell_curse_ticks_remaining?: boolean | number;
|
|
618
638
|
species?: boolean | number;
|
|
639
|
+
territoriality?: boolean | number;
|
|
619
640
|
xp?: boolean | number;
|
|
620
641
|
__typename?: boolean | number;
|
|
621
642
|
__scalar?: boolean | number;
|
|
@@ -739,10 +760,11 @@ interface SendWhisperInput {
|
|
|
739
760
|
receiver_id: Scalars['String'];
|
|
740
761
|
}
|
|
741
762
|
interface SiegeGenqlSelection {
|
|
763
|
+
attacker_clan_id?: boolean | number;
|
|
742
764
|
attacker_claw_id?: boolean | number;
|
|
743
765
|
attacker_pool_id?: boolean | number;
|
|
744
766
|
created_at?: boolean | number;
|
|
745
|
-
|
|
767
|
+
defender_clan_id?: boolean | number;
|
|
746
768
|
defender_pool_id?: boolean | number;
|
|
747
769
|
ended_at_tick?: boolean | number;
|
|
748
770
|
id?: boolean | number;
|
package/dist/index.js
CHANGED
|
@@ -1178,7 +1178,7 @@ var types_default = {
|
|
|
1178
1178
|
"is_spawn_zone": [
|
|
1179
1179
|
3
|
|
1180
1180
|
],
|
|
1181
|
-
"
|
|
1181
|
+
"owner_clan_id": [
|
|
1182
1182
|
44
|
|
1183
1183
|
],
|
|
1184
1184
|
"q": [
|
|
@@ -1282,18 +1282,42 @@ var types_default = {
|
|
|
1282
1282
|
]
|
|
1283
1283
|
},
|
|
1284
1284
|
"PublicClaw": {
|
|
1285
|
+
"aggression": [
|
|
1286
|
+
17
|
|
1287
|
+
],
|
|
1285
1288
|
"bio": [
|
|
1286
1289
|
44
|
|
1287
1290
|
],
|
|
1291
|
+
"created_at": [
|
|
1292
|
+
14
|
|
1293
|
+
],
|
|
1294
|
+
"deception": [
|
|
1295
|
+
17
|
|
1296
|
+
],
|
|
1297
|
+
"food": [
|
|
1298
|
+
17
|
|
1299
|
+
],
|
|
1288
1300
|
"id": [
|
|
1289
1301
|
21
|
|
1290
1302
|
],
|
|
1291
1303
|
"is_alive": [
|
|
1292
1304
|
3
|
|
1293
1305
|
],
|
|
1306
|
+
"is_molting": [
|
|
1307
|
+
3
|
|
1308
|
+
],
|
|
1294
1309
|
"level": [
|
|
1295
1310
|
22
|
|
1296
1311
|
],
|
|
1312
|
+
"loyalty": [
|
|
1313
|
+
17
|
|
1314
|
+
],
|
|
1315
|
+
"minerals": [
|
|
1316
|
+
17
|
|
1317
|
+
],
|
|
1318
|
+
"molt_ticks_remaining": [
|
|
1319
|
+
22
|
|
1320
|
+
],
|
|
1297
1321
|
"name": [
|
|
1298
1322
|
44
|
|
1299
1323
|
],
|
|
@@ -1306,9 +1330,15 @@ var types_default = {
|
|
|
1306
1330
|
"shell_tier": [
|
|
1307
1331
|
22
|
|
1308
1332
|
],
|
|
1333
|
+
"soft_shell_curse_ticks_remaining": [
|
|
1334
|
+
22
|
|
1335
|
+
],
|
|
1309
1336
|
"species": [
|
|
1310
1337
|
41
|
|
1311
1338
|
],
|
|
1339
|
+
"territoriality": [
|
|
1340
|
+
17
|
|
1341
|
+
],
|
|
1312
1342
|
"xp": [
|
|
1313
1343
|
22
|
|
1314
1344
|
],
|
|
@@ -1574,6 +1604,9 @@ var types_default = {
|
|
|
1574
1604
|
]
|
|
1575
1605
|
},
|
|
1576
1606
|
"Siege": {
|
|
1607
|
+
"attacker_clan_id": [
|
|
1608
|
+
44
|
|
1609
|
+
],
|
|
1577
1610
|
"attacker_claw_id": [
|
|
1578
1611
|
44
|
|
1579
1612
|
],
|
|
@@ -1583,7 +1616,7 @@ var types_default = {
|
|
|
1583
1616
|
"created_at": [
|
|
1584
1617
|
14
|
|
1585
1618
|
],
|
|
1586
|
-
"
|
|
1619
|
+
"defender_clan_id": [
|
|
1587
1620
|
44
|
|
1588
1621
|
],
|
|
1589
1622
|
"defender_pool_id": [
|