@clawconquest/client 1.10.0 → 1.12.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 +19 -1
- package/dist/index.d.cts +14 -2
- package/dist/index.d.ts +14 -2
- package/dist/index.js +19 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1406,6 +1406,15 @@ var types_default = {
|
|
|
1406
1406
|
]
|
|
1407
1407
|
}
|
|
1408
1408
|
],
|
|
1409
|
+
"clawUnits": [
|
|
1410
|
+
46,
|
|
1411
|
+
{
|
|
1412
|
+
"claw_id": [
|
|
1413
|
+
44,
|
|
1414
|
+
"String!"
|
|
1415
|
+
]
|
|
1416
|
+
}
|
|
1417
|
+
],
|
|
1409
1418
|
"countClaws": [
|
|
1410
1419
|
22
|
|
1411
1420
|
],
|
|
@@ -1514,7 +1523,7 @@ var types_default = {
|
|
|
1514
1523
|
]
|
|
1515
1524
|
}
|
|
1516
1525
|
],
|
|
1517
|
-
"
|
|
1526
|
+
"poolUnits": [
|
|
1518
1527
|
46,
|
|
1519
1528
|
{
|
|
1520
1529
|
"pool_id": [
|
|
@@ -1540,6 +1549,15 @@ var types_default = {
|
|
|
1540
1549
|
]
|
|
1541
1550
|
}
|
|
1542
1551
|
],
|
|
1552
|
+
"sieges": [
|
|
1553
|
+
39,
|
|
1554
|
+
{
|
|
1555
|
+
"pool_id": [
|
|
1556
|
+
44,
|
|
1557
|
+
"String!"
|
|
1558
|
+
]
|
|
1559
|
+
}
|
|
1560
|
+
],
|
|
1543
1561
|
"__typename": [
|
|
1544
1562
|
44
|
|
1545
1563
|
]
|
package/dist/index.d.cts
CHANGED
|
@@ -200,6 +200,7 @@ interface Query {
|
|
|
200
200
|
clanPacts: ClanPact[];
|
|
201
201
|
clans: Clan[];
|
|
202
202
|
claw: PublicClaw;
|
|
203
|
+
clawUnits: Unit[];
|
|
203
204
|
countClaws: Scalars['Int'];
|
|
204
205
|
events: GameEvent[];
|
|
205
206
|
gameState: GameStateInfo;
|
|
@@ -218,9 +219,10 @@ interface Query {
|
|
|
218
219
|
my_units: Unit[];
|
|
219
220
|
outbox: Whisper[];
|
|
220
221
|
pool: Pool;
|
|
221
|
-
|
|
222
|
+
poolUnits: Unit[];
|
|
222
223
|
pools: Pool[];
|
|
223
224
|
siege: Siege;
|
|
225
|
+
sieges: Siege[];
|
|
224
226
|
__typename: 'Query';
|
|
225
227
|
}
|
|
226
228
|
interface RegenerateKeyPayload {
|
|
@@ -629,6 +631,11 @@ interface QueryGenqlSelection {
|
|
|
629
631
|
id: Scalars['String'];
|
|
630
632
|
};
|
|
631
633
|
});
|
|
634
|
+
clawUnits?: (UnitGenqlSelection & {
|
|
635
|
+
__args: {
|
|
636
|
+
claw_id: Scalars['String'];
|
|
637
|
+
};
|
|
638
|
+
});
|
|
632
639
|
countClaws?: boolean | number;
|
|
633
640
|
events?: (GameEventGenqlSelection & {
|
|
634
641
|
__args?: {
|
|
@@ -674,7 +681,7 @@ interface QueryGenqlSelection {
|
|
|
674
681
|
id: Scalars['String'];
|
|
675
682
|
};
|
|
676
683
|
});
|
|
677
|
-
|
|
684
|
+
poolUnits?: (UnitGenqlSelection & {
|
|
678
685
|
__args: {
|
|
679
686
|
pool_id: Scalars['String'];
|
|
680
687
|
};
|
|
@@ -689,6 +696,11 @@ interface QueryGenqlSelection {
|
|
|
689
696
|
id: Scalars['String'];
|
|
690
697
|
};
|
|
691
698
|
});
|
|
699
|
+
sieges?: (SiegeGenqlSelection & {
|
|
700
|
+
__args: {
|
|
701
|
+
pool_id: Scalars['String'];
|
|
702
|
+
};
|
|
703
|
+
});
|
|
692
704
|
__typename?: boolean | number;
|
|
693
705
|
__scalar?: boolean | number;
|
|
694
706
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -200,6 +200,7 @@ interface Query {
|
|
|
200
200
|
clanPacts: ClanPact[];
|
|
201
201
|
clans: Clan[];
|
|
202
202
|
claw: PublicClaw;
|
|
203
|
+
clawUnits: Unit[];
|
|
203
204
|
countClaws: Scalars['Int'];
|
|
204
205
|
events: GameEvent[];
|
|
205
206
|
gameState: GameStateInfo;
|
|
@@ -218,9 +219,10 @@ interface Query {
|
|
|
218
219
|
my_units: Unit[];
|
|
219
220
|
outbox: Whisper[];
|
|
220
221
|
pool: Pool;
|
|
221
|
-
|
|
222
|
+
poolUnits: Unit[];
|
|
222
223
|
pools: Pool[];
|
|
223
224
|
siege: Siege;
|
|
225
|
+
sieges: Siege[];
|
|
224
226
|
__typename: 'Query';
|
|
225
227
|
}
|
|
226
228
|
interface RegenerateKeyPayload {
|
|
@@ -629,6 +631,11 @@ interface QueryGenqlSelection {
|
|
|
629
631
|
id: Scalars['String'];
|
|
630
632
|
};
|
|
631
633
|
});
|
|
634
|
+
clawUnits?: (UnitGenqlSelection & {
|
|
635
|
+
__args: {
|
|
636
|
+
claw_id: Scalars['String'];
|
|
637
|
+
};
|
|
638
|
+
});
|
|
632
639
|
countClaws?: boolean | number;
|
|
633
640
|
events?: (GameEventGenqlSelection & {
|
|
634
641
|
__args?: {
|
|
@@ -674,7 +681,7 @@ interface QueryGenqlSelection {
|
|
|
674
681
|
id: Scalars['String'];
|
|
675
682
|
};
|
|
676
683
|
});
|
|
677
|
-
|
|
684
|
+
poolUnits?: (UnitGenqlSelection & {
|
|
678
685
|
__args: {
|
|
679
686
|
pool_id: Scalars['String'];
|
|
680
687
|
};
|
|
@@ -689,6 +696,11 @@ interface QueryGenqlSelection {
|
|
|
689
696
|
id: Scalars['String'];
|
|
690
697
|
};
|
|
691
698
|
});
|
|
699
|
+
sieges?: (SiegeGenqlSelection & {
|
|
700
|
+
__args: {
|
|
701
|
+
pool_id: Scalars['String'];
|
|
702
|
+
};
|
|
703
|
+
});
|
|
692
704
|
__typename?: boolean | number;
|
|
693
705
|
__scalar?: boolean | number;
|
|
694
706
|
}
|
package/dist/index.js
CHANGED
|
@@ -1341,6 +1341,15 @@ var types_default = {
|
|
|
1341
1341
|
]
|
|
1342
1342
|
}
|
|
1343
1343
|
],
|
|
1344
|
+
"clawUnits": [
|
|
1345
|
+
46,
|
|
1346
|
+
{
|
|
1347
|
+
"claw_id": [
|
|
1348
|
+
44,
|
|
1349
|
+
"String!"
|
|
1350
|
+
]
|
|
1351
|
+
}
|
|
1352
|
+
],
|
|
1344
1353
|
"countClaws": [
|
|
1345
1354
|
22
|
|
1346
1355
|
],
|
|
@@ -1449,7 +1458,7 @@ var types_default = {
|
|
|
1449
1458
|
]
|
|
1450
1459
|
}
|
|
1451
1460
|
],
|
|
1452
|
-
"
|
|
1461
|
+
"poolUnits": [
|
|
1453
1462
|
46,
|
|
1454
1463
|
{
|
|
1455
1464
|
"pool_id": [
|
|
@@ -1475,6 +1484,15 @@ var types_default = {
|
|
|
1475
1484
|
]
|
|
1476
1485
|
}
|
|
1477
1486
|
],
|
|
1487
|
+
"sieges": [
|
|
1488
|
+
39,
|
|
1489
|
+
{
|
|
1490
|
+
"pool_id": [
|
|
1491
|
+
44,
|
|
1492
|
+
"String!"
|
|
1493
|
+
]
|
|
1494
|
+
}
|
|
1495
|
+
],
|
|
1478
1496
|
"__typename": [
|
|
1479
1497
|
44
|
|
1480
1498
|
]
|