@clawconquest/client 1.15.0 → 1.17.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 +11 -2
- package/dist/index.d.cts +9 -4
- package/dist/index.d.ts +9 -4
- package/dist/index.js +11 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -922,6 +922,9 @@ var types_default = {
|
|
|
922
922
|
},
|
|
923
923
|
"Float": {},
|
|
924
924
|
"GameEvent": {
|
|
925
|
+
"clan_id": [
|
|
926
|
+
44
|
|
927
|
+
],
|
|
925
928
|
"claw_id": [
|
|
926
929
|
44
|
|
927
930
|
],
|
|
@@ -1243,7 +1246,7 @@ var types_default = {
|
|
|
1243
1246
|
"is_spawn_zone": [
|
|
1244
1247
|
3
|
|
1245
1248
|
],
|
|
1246
|
-
"
|
|
1249
|
+
"owner_clan_id": [
|
|
1247
1250
|
44
|
|
1248
1251
|
],
|
|
1249
1252
|
"q": [
|
|
@@ -1471,6 +1474,9 @@ var types_default = {
|
|
|
1471
1474
|
"events": [
|
|
1472
1475
|
18,
|
|
1473
1476
|
{
|
|
1477
|
+
"clanId": [
|
|
1478
|
+
44
|
|
1479
|
+
],
|
|
1474
1480
|
"clawId": [
|
|
1475
1481
|
44
|
|
1476
1482
|
],
|
|
@@ -1669,6 +1675,9 @@ var types_default = {
|
|
|
1669
1675
|
]
|
|
1670
1676
|
},
|
|
1671
1677
|
"Siege": {
|
|
1678
|
+
"attacker_clan_id": [
|
|
1679
|
+
44
|
|
1680
|
+
],
|
|
1672
1681
|
"attacker_claw_id": [
|
|
1673
1682
|
44
|
|
1674
1683
|
],
|
|
@@ -1678,7 +1687,7 @@ var types_default = {
|
|
|
1678
1687
|
"created_at": [
|
|
1679
1688
|
14
|
|
1680
1689
|
],
|
|
1681
|
-
"
|
|
1690
|
+
"defender_clan_id": [
|
|
1682
1691
|
44
|
|
1683
1692
|
],
|
|
1684
1693
|
"defender_pool_id": [
|
package/dist/index.d.cts
CHANGED
|
@@ -82,6 +82,7 @@ interface CreateClawPayload {
|
|
|
82
82
|
__typename: 'CreateClawPayload';
|
|
83
83
|
}
|
|
84
84
|
interface GameEvent {
|
|
85
|
+
clan_id: (Scalars['String'] | null);
|
|
85
86
|
claw_id: (Scalars['String'] | null);
|
|
86
87
|
data: (Scalars['String'] | null);
|
|
87
88
|
event_type: Scalars['String'];
|
|
@@ -149,7 +150,7 @@ interface Pool {
|
|
|
149
150
|
fortification: (Scalars['Int'] | null);
|
|
150
151
|
id: Scalars['ID'];
|
|
151
152
|
is_spawn_zone: Scalars['Boolean'];
|
|
152
|
-
|
|
153
|
+
owner_clan_id: (Scalars['String'] | null);
|
|
153
154
|
q: Scalars['Int'];
|
|
154
155
|
r: Scalars['Int'];
|
|
155
156
|
region_id: Scalars['Int'];
|
|
@@ -252,10 +253,11 @@ interface Relationship {
|
|
|
252
253
|
__typename: 'Relationship';
|
|
253
254
|
}
|
|
254
255
|
interface Siege {
|
|
256
|
+
attacker_clan_id: (Scalars['String'] | null);
|
|
255
257
|
attacker_claw_id: Scalars['String'];
|
|
256
258
|
attacker_pool_id: Scalars['String'];
|
|
257
259
|
created_at: Scalars['DateTime'];
|
|
258
|
-
|
|
260
|
+
defender_clan_id: (Scalars['String'] | null);
|
|
259
261
|
defender_pool_id: Scalars['String'];
|
|
260
262
|
ended_at_tick: (Scalars['Int'] | null);
|
|
261
263
|
id: Scalars['ID'];
|
|
@@ -418,6 +420,7 @@ interface DismissUnitInput {
|
|
|
418
420
|
unit_id: Scalars['String'];
|
|
419
421
|
}
|
|
420
422
|
interface GameEventGenqlSelection {
|
|
423
|
+
clan_id?: boolean | number;
|
|
421
424
|
claw_id?: boolean | number;
|
|
422
425
|
data?: boolean | number;
|
|
423
426
|
event_type?: boolean | number;
|
|
@@ -578,7 +581,7 @@ interface PoolGenqlSelection {
|
|
|
578
581
|
fortification?: boolean | number;
|
|
579
582
|
id?: boolean | number;
|
|
580
583
|
is_spawn_zone?: boolean | number;
|
|
581
|
-
|
|
584
|
+
owner_clan_id?: boolean | number;
|
|
582
585
|
q?: boolean | number;
|
|
583
586
|
r?: boolean | number;
|
|
584
587
|
region_id?: boolean | number;
|
|
@@ -669,6 +672,7 @@ interface QueryGenqlSelection {
|
|
|
669
672
|
countClaws?: boolean | number;
|
|
670
673
|
events?: (GameEventGenqlSelection & {
|
|
671
674
|
__args?: {
|
|
675
|
+
clanId?: (Scalars['String'] | null);
|
|
672
676
|
clawId?: (Scalars['String'] | null);
|
|
673
677
|
eventType?: (Scalars['String'] | null);
|
|
674
678
|
limit?: Scalars['Int'];
|
|
@@ -759,10 +763,11 @@ interface SendWhisperInput {
|
|
|
759
763
|
receiver_id: Scalars['String'];
|
|
760
764
|
}
|
|
761
765
|
interface SiegeGenqlSelection {
|
|
766
|
+
attacker_clan_id?: boolean | number;
|
|
762
767
|
attacker_claw_id?: boolean | number;
|
|
763
768
|
attacker_pool_id?: boolean | number;
|
|
764
769
|
created_at?: boolean | number;
|
|
765
|
-
|
|
770
|
+
defender_clan_id?: boolean | number;
|
|
766
771
|
defender_pool_id?: boolean | number;
|
|
767
772
|
ended_at_tick?: boolean | number;
|
|
768
773
|
id?: boolean | number;
|
package/dist/index.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ interface CreateClawPayload {
|
|
|
82
82
|
__typename: 'CreateClawPayload';
|
|
83
83
|
}
|
|
84
84
|
interface GameEvent {
|
|
85
|
+
clan_id: (Scalars['String'] | null);
|
|
85
86
|
claw_id: (Scalars['String'] | null);
|
|
86
87
|
data: (Scalars['String'] | null);
|
|
87
88
|
event_type: Scalars['String'];
|
|
@@ -149,7 +150,7 @@ interface Pool {
|
|
|
149
150
|
fortification: (Scalars['Int'] | null);
|
|
150
151
|
id: Scalars['ID'];
|
|
151
152
|
is_spawn_zone: Scalars['Boolean'];
|
|
152
|
-
|
|
153
|
+
owner_clan_id: (Scalars['String'] | null);
|
|
153
154
|
q: Scalars['Int'];
|
|
154
155
|
r: Scalars['Int'];
|
|
155
156
|
region_id: Scalars['Int'];
|
|
@@ -252,10 +253,11 @@ interface Relationship {
|
|
|
252
253
|
__typename: 'Relationship';
|
|
253
254
|
}
|
|
254
255
|
interface Siege {
|
|
256
|
+
attacker_clan_id: (Scalars['String'] | null);
|
|
255
257
|
attacker_claw_id: Scalars['String'];
|
|
256
258
|
attacker_pool_id: Scalars['String'];
|
|
257
259
|
created_at: Scalars['DateTime'];
|
|
258
|
-
|
|
260
|
+
defender_clan_id: (Scalars['String'] | null);
|
|
259
261
|
defender_pool_id: Scalars['String'];
|
|
260
262
|
ended_at_tick: (Scalars['Int'] | null);
|
|
261
263
|
id: Scalars['ID'];
|
|
@@ -418,6 +420,7 @@ interface DismissUnitInput {
|
|
|
418
420
|
unit_id: Scalars['String'];
|
|
419
421
|
}
|
|
420
422
|
interface GameEventGenqlSelection {
|
|
423
|
+
clan_id?: boolean | number;
|
|
421
424
|
claw_id?: boolean | number;
|
|
422
425
|
data?: boolean | number;
|
|
423
426
|
event_type?: boolean | number;
|
|
@@ -578,7 +581,7 @@ interface PoolGenqlSelection {
|
|
|
578
581
|
fortification?: boolean | number;
|
|
579
582
|
id?: boolean | number;
|
|
580
583
|
is_spawn_zone?: boolean | number;
|
|
581
|
-
|
|
584
|
+
owner_clan_id?: boolean | number;
|
|
582
585
|
q?: boolean | number;
|
|
583
586
|
r?: boolean | number;
|
|
584
587
|
region_id?: boolean | number;
|
|
@@ -669,6 +672,7 @@ interface QueryGenqlSelection {
|
|
|
669
672
|
countClaws?: boolean | number;
|
|
670
673
|
events?: (GameEventGenqlSelection & {
|
|
671
674
|
__args?: {
|
|
675
|
+
clanId?: (Scalars['String'] | null);
|
|
672
676
|
clawId?: (Scalars['String'] | null);
|
|
673
677
|
eventType?: (Scalars['String'] | null);
|
|
674
678
|
limit?: Scalars['Int'];
|
|
@@ -759,10 +763,11 @@ interface SendWhisperInput {
|
|
|
759
763
|
receiver_id: Scalars['String'];
|
|
760
764
|
}
|
|
761
765
|
interface SiegeGenqlSelection {
|
|
766
|
+
attacker_clan_id?: boolean | number;
|
|
762
767
|
attacker_claw_id?: boolean | number;
|
|
763
768
|
attacker_pool_id?: boolean | number;
|
|
764
769
|
created_at?: boolean | number;
|
|
765
|
-
|
|
770
|
+
defender_clan_id?: boolean | number;
|
|
766
771
|
defender_pool_id?: boolean | number;
|
|
767
772
|
ended_at_tick?: boolean | number;
|
|
768
773
|
id?: boolean | number;
|
package/dist/index.js
CHANGED
|
@@ -857,6 +857,9 @@ var types_default = {
|
|
|
857
857
|
},
|
|
858
858
|
"Float": {},
|
|
859
859
|
"GameEvent": {
|
|
860
|
+
"clan_id": [
|
|
861
|
+
44
|
|
862
|
+
],
|
|
860
863
|
"claw_id": [
|
|
861
864
|
44
|
|
862
865
|
],
|
|
@@ -1178,7 +1181,7 @@ var types_default = {
|
|
|
1178
1181
|
"is_spawn_zone": [
|
|
1179
1182
|
3
|
|
1180
1183
|
],
|
|
1181
|
-
"
|
|
1184
|
+
"owner_clan_id": [
|
|
1182
1185
|
44
|
|
1183
1186
|
],
|
|
1184
1187
|
"q": [
|
|
@@ -1406,6 +1409,9 @@ var types_default = {
|
|
|
1406
1409
|
"events": [
|
|
1407
1410
|
18,
|
|
1408
1411
|
{
|
|
1412
|
+
"clanId": [
|
|
1413
|
+
44
|
|
1414
|
+
],
|
|
1409
1415
|
"clawId": [
|
|
1410
1416
|
44
|
|
1411
1417
|
],
|
|
@@ -1604,6 +1610,9 @@ var types_default = {
|
|
|
1604
1610
|
]
|
|
1605
1611
|
},
|
|
1606
1612
|
"Siege": {
|
|
1613
|
+
"attacker_clan_id": [
|
|
1614
|
+
44
|
|
1615
|
+
],
|
|
1607
1616
|
"attacker_claw_id": [
|
|
1608
1617
|
44
|
|
1609
1618
|
],
|
|
@@ -1613,7 +1622,7 @@ var types_default = {
|
|
|
1613
1622
|
"created_at": [
|
|
1614
1623
|
14
|
|
1615
1624
|
],
|
|
1616
|
-
"
|
|
1625
|
+
"defender_clan_id": [
|
|
1617
1626
|
44
|
|
1618
1627
|
],
|
|
1619
1628
|
"defender_pool_id": [
|