@clawconquest/client 1.16.0 → 1.18.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 +27 -0
- package/dist/index.d.cts +17 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +27 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -780,6 +780,9 @@ var types_default = {
|
|
|
780
780
|
"is_molting": [
|
|
781
781
|
3
|
|
782
782
|
],
|
|
783
|
+
"last_ping_at": [
|
|
784
|
+
14
|
|
785
|
+
],
|
|
783
786
|
"level": [
|
|
784
787
|
22
|
|
785
788
|
],
|
|
@@ -922,6 +925,9 @@ var types_default = {
|
|
|
922
925
|
},
|
|
923
926
|
"Float": {},
|
|
924
927
|
"GameEvent": {
|
|
928
|
+
"clan_id": [
|
|
929
|
+
44
|
|
930
|
+
],
|
|
925
931
|
"claw_id": [
|
|
926
932
|
44
|
|
927
933
|
],
|
|
@@ -1014,6 +1020,15 @@ var types_default = {
|
|
|
1014
1020
|
]
|
|
1015
1021
|
}
|
|
1016
1022
|
],
|
|
1023
|
+
"claimPool": [
|
|
1024
|
+
28,
|
|
1025
|
+
{
|
|
1026
|
+
"pool_id": [
|
|
1027
|
+
44,
|
|
1028
|
+
"String!"
|
|
1029
|
+
]
|
|
1030
|
+
}
|
|
1031
|
+
],
|
|
1017
1032
|
"createClan": [
|
|
1018
1033
|
4,
|
|
1019
1034
|
{
|
|
@@ -1096,6 +1111,9 @@ var types_default = {
|
|
|
1096
1111
|
"leaveClan": [
|
|
1097
1112
|
9
|
|
1098
1113
|
],
|
|
1114
|
+
"ping": [
|
|
1115
|
+
3
|
|
1116
|
+
],
|
|
1099
1117
|
"proposeClanPact": [
|
|
1100
1118
|
6,
|
|
1101
1119
|
{
|
|
@@ -1289,6 +1307,9 @@ var types_default = {
|
|
|
1289
1307
|
"is_molting": [
|
|
1290
1308
|
3
|
|
1291
1309
|
],
|
|
1310
|
+
"last_ping_at": [
|
|
1311
|
+
14
|
|
1312
|
+
],
|
|
1292
1313
|
"level": [
|
|
1293
1314
|
22
|
|
1294
1315
|
],
|
|
@@ -1371,6 +1392,9 @@ var types_default = {
|
|
|
1371
1392
|
"is_molting": [
|
|
1372
1393
|
3
|
|
1373
1394
|
],
|
|
1395
|
+
"last_ping_at": [
|
|
1396
|
+
14
|
|
1397
|
+
],
|
|
1374
1398
|
"level": [
|
|
1375
1399
|
22
|
|
1376
1400
|
],
|
|
@@ -1471,6 +1495,9 @@ var types_default = {
|
|
|
1471
1495
|
"events": [
|
|
1472
1496
|
18,
|
|
1473
1497
|
{
|
|
1498
|
+
"clanId": [
|
|
1499
|
+
44
|
|
1500
|
+
],
|
|
1474
1501
|
"clawId": [
|
|
1475
1502
|
44
|
|
1476
1503
|
],
|
package/dist/index.d.cts
CHANGED
|
@@ -54,6 +54,7 @@ interface Claw {
|
|
|
54
54
|
id: Scalars['ID'];
|
|
55
55
|
is_alive: Scalars['Boolean'];
|
|
56
56
|
is_molting: Scalars['Boolean'];
|
|
57
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
57
58
|
level: Scalars['Int'];
|
|
58
59
|
loyalty: Scalars['Float'];
|
|
59
60
|
minerals: Scalars['Float'];
|
|
@@ -82,6 +83,7 @@ interface CreateClawPayload {
|
|
|
82
83
|
__typename: 'CreateClawPayload';
|
|
83
84
|
}
|
|
84
85
|
interface GameEvent {
|
|
86
|
+
clan_id: (Scalars['String'] | null);
|
|
85
87
|
claw_id: (Scalars['String'] | null);
|
|
86
88
|
data: (Scalars['String'] | null);
|
|
87
89
|
event_type: Scalars['String'];
|
|
@@ -106,6 +108,7 @@ interface Mutation {
|
|
|
106
108
|
assign_units: Unit[];
|
|
107
109
|
breakClanPact: ClanPact;
|
|
108
110
|
cancelApplication: ClanApplication;
|
|
111
|
+
claimPool: Pool;
|
|
109
112
|
createClan: Clan;
|
|
110
113
|
createClaw: CreateClawPayload;
|
|
111
114
|
deploy_spy: SpyDeployment;
|
|
@@ -116,6 +119,7 @@ interface Mutation {
|
|
|
116
119
|
initiate_siege: Siege;
|
|
117
120
|
kickMember: Claw;
|
|
118
121
|
leaveClan: Claw;
|
|
122
|
+
ping: Scalars['Boolean'];
|
|
119
123
|
proposeClanPact: ClanPact;
|
|
120
124
|
recruit_units: Unit;
|
|
121
125
|
regenerateClawKey: RegenerateKeyPayload;
|
|
@@ -167,6 +171,7 @@ interface PrivateClaw {
|
|
|
167
171
|
id: Scalars['ID'];
|
|
168
172
|
is_alive: Scalars['Boolean'];
|
|
169
173
|
is_molting: Scalars['Boolean'];
|
|
174
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
170
175
|
level: Scalars['Int'];
|
|
171
176
|
loyalty: Scalars['Float'];
|
|
172
177
|
minerals: Scalars['Float'];
|
|
@@ -191,6 +196,7 @@ interface PublicClaw {
|
|
|
191
196
|
id: Scalars['ID'];
|
|
192
197
|
is_alive: Scalars['Boolean'];
|
|
193
198
|
is_molting: Scalars['Boolean'];
|
|
199
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
194
200
|
level: Scalars['Int'];
|
|
195
201
|
loyalty: Scalars['Float'];
|
|
196
202
|
minerals: Scalars['Float'];
|
|
@@ -364,6 +370,7 @@ interface ClawGenqlSelection {
|
|
|
364
370
|
id?: boolean | number;
|
|
365
371
|
is_alive?: boolean | number;
|
|
366
372
|
is_molting?: boolean | number;
|
|
373
|
+
last_ping_at?: boolean | number;
|
|
367
374
|
level?: boolean | number;
|
|
368
375
|
loyalty?: boolean | number;
|
|
369
376
|
minerals?: boolean | number;
|
|
@@ -419,6 +426,7 @@ interface DismissUnitInput {
|
|
|
419
426
|
unit_id: Scalars['String'];
|
|
420
427
|
}
|
|
421
428
|
interface GameEventGenqlSelection {
|
|
429
|
+
clan_id?: boolean | number;
|
|
422
430
|
claw_id?: boolean | number;
|
|
423
431
|
data?: boolean | number;
|
|
424
432
|
event_type?: boolean | number;
|
|
@@ -463,6 +471,11 @@ interface MutationGenqlSelection {
|
|
|
463
471
|
applicationId: Scalars['String'];
|
|
464
472
|
};
|
|
465
473
|
});
|
|
474
|
+
claimPool?: (PoolGenqlSelection & {
|
|
475
|
+
__args: {
|
|
476
|
+
pool_id: Scalars['String'];
|
|
477
|
+
};
|
|
478
|
+
});
|
|
466
479
|
createClan?: (ClanGenqlSelection & {
|
|
467
480
|
__args: {
|
|
468
481
|
input: CreateClanInput;
|
|
@@ -506,6 +519,7 @@ interface MutationGenqlSelection {
|
|
|
506
519
|
};
|
|
507
520
|
});
|
|
508
521
|
leaveClan?: ClawGenqlSelection;
|
|
522
|
+
ping?: boolean | number;
|
|
509
523
|
proposeClanPact?: (ClanPactGenqlSelection & {
|
|
510
524
|
__args: {
|
|
511
525
|
input: ProposeClanPactInput;
|
|
@@ -596,6 +610,7 @@ interface PrivateClawGenqlSelection {
|
|
|
596
610
|
id?: boolean | number;
|
|
597
611
|
is_alive?: boolean | number;
|
|
598
612
|
is_molting?: boolean | number;
|
|
613
|
+
last_ping_at?: boolean | number;
|
|
599
614
|
level?: boolean | number;
|
|
600
615
|
loyalty?: boolean | number;
|
|
601
616
|
minerals?: boolean | number;
|
|
@@ -626,6 +641,7 @@ interface PublicClawGenqlSelection {
|
|
|
626
641
|
id?: boolean | number;
|
|
627
642
|
is_alive?: boolean | number;
|
|
628
643
|
is_molting?: boolean | number;
|
|
644
|
+
last_ping_at?: boolean | number;
|
|
629
645
|
level?: boolean | number;
|
|
630
646
|
loyalty?: boolean | number;
|
|
631
647
|
minerals?: boolean | number;
|
|
@@ -670,6 +686,7 @@ interface QueryGenqlSelection {
|
|
|
670
686
|
countClaws?: boolean | number;
|
|
671
687
|
events?: (GameEventGenqlSelection & {
|
|
672
688
|
__args?: {
|
|
689
|
+
clanId?: (Scalars['String'] | null);
|
|
673
690
|
clawId?: (Scalars['String'] | null);
|
|
674
691
|
eventType?: (Scalars['String'] | null);
|
|
675
692
|
limit?: Scalars['Int'];
|
package/dist/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ interface Claw {
|
|
|
54
54
|
id: Scalars['ID'];
|
|
55
55
|
is_alive: Scalars['Boolean'];
|
|
56
56
|
is_molting: Scalars['Boolean'];
|
|
57
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
57
58
|
level: Scalars['Int'];
|
|
58
59
|
loyalty: Scalars['Float'];
|
|
59
60
|
minerals: Scalars['Float'];
|
|
@@ -82,6 +83,7 @@ interface CreateClawPayload {
|
|
|
82
83
|
__typename: 'CreateClawPayload';
|
|
83
84
|
}
|
|
84
85
|
interface GameEvent {
|
|
86
|
+
clan_id: (Scalars['String'] | null);
|
|
85
87
|
claw_id: (Scalars['String'] | null);
|
|
86
88
|
data: (Scalars['String'] | null);
|
|
87
89
|
event_type: Scalars['String'];
|
|
@@ -106,6 +108,7 @@ interface Mutation {
|
|
|
106
108
|
assign_units: Unit[];
|
|
107
109
|
breakClanPact: ClanPact;
|
|
108
110
|
cancelApplication: ClanApplication;
|
|
111
|
+
claimPool: Pool;
|
|
109
112
|
createClan: Clan;
|
|
110
113
|
createClaw: CreateClawPayload;
|
|
111
114
|
deploy_spy: SpyDeployment;
|
|
@@ -116,6 +119,7 @@ interface Mutation {
|
|
|
116
119
|
initiate_siege: Siege;
|
|
117
120
|
kickMember: Claw;
|
|
118
121
|
leaveClan: Claw;
|
|
122
|
+
ping: Scalars['Boolean'];
|
|
119
123
|
proposeClanPact: ClanPact;
|
|
120
124
|
recruit_units: Unit;
|
|
121
125
|
regenerateClawKey: RegenerateKeyPayload;
|
|
@@ -167,6 +171,7 @@ interface PrivateClaw {
|
|
|
167
171
|
id: Scalars['ID'];
|
|
168
172
|
is_alive: Scalars['Boolean'];
|
|
169
173
|
is_molting: Scalars['Boolean'];
|
|
174
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
170
175
|
level: Scalars['Int'];
|
|
171
176
|
loyalty: Scalars['Float'];
|
|
172
177
|
minerals: Scalars['Float'];
|
|
@@ -191,6 +196,7 @@ interface PublicClaw {
|
|
|
191
196
|
id: Scalars['ID'];
|
|
192
197
|
is_alive: Scalars['Boolean'];
|
|
193
198
|
is_molting: Scalars['Boolean'];
|
|
199
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
194
200
|
level: Scalars['Int'];
|
|
195
201
|
loyalty: Scalars['Float'];
|
|
196
202
|
minerals: Scalars['Float'];
|
|
@@ -364,6 +370,7 @@ interface ClawGenqlSelection {
|
|
|
364
370
|
id?: boolean | number;
|
|
365
371
|
is_alive?: boolean | number;
|
|
366
372
|
is_molting?: boolean | number;
|
|
373
|
+
last_ping_at?: boolean | number;
|
|
367
374
|
level?: boolean | number;
|
|
368
375
|
loyalty?: boolean | number;
|
|
369
376
|
minerals?: boolean | number;
|
|
@@ -419,6 +426,7 @@ interface DismissUnitInput {
|
|
|
419
426
|
unit_id: Scalars['String'];
|
|
420
427
|
}
|
|
421
428
|
interface GameEventGenqlSelection {
|
|
429
|
+
clan_id?: boolean | number;
|
|
422
430
|
claw_id?: boolean | number;
|
|
423
431
|
data?: boolean | number;
|
|
424
432
|
event_type?: boolean | number;
|
|
@@ -463,6 +471,11 @@ interface MutationGenqlSelection {
|
|
|
463
471
|
applicationId: Scalars['String'];
|
|
464
472
|
};
|
|
465
473
|
});
|
|
474
|
+
claimPool?: (PoolGenqlSelection & {
|
|
475
|
+
__args: {
|
|
476
|
+
pool_id: Scalars['String'];
|
|
477
|
+
};
|
|
478
|
+
});
|
|
466
479
|
createClan?: (ClanGenqlSelection & {
|
|
467
480
|
__args: {
|
|
468
481
|
input: CreateClanInput;
|
|
@@ -506,6 +519,7 @@ interface MutationGenqlSelection {
|
|
|
506
519
|
};
|
|
507
520
|
});
|
|
508
521
|
leaveClan?: ClawGenqlSelection;
|
|
522
|
+
ping?: boolean | number;
|
|
509
523
|
proposeClanPact?: (ClanPactGenqlSelection & {
|
|
510
524
|
__args: {
|
|
511
525
|
input: ProposeClanPactInput;
|
|
@@ -596,6 +610,7 @@ interface PrivateClawGenqlSelection {
|
|
|
596
610
|
id?: boolean | number;
|
|
597
611
|
is_alive?: boolean | number;
|
|
598
612
|
is_molting?: boolean | number;
|
|
613
|
+
last_ping_at?: boolean | number;
|
|
599
614
|
level?: boolean | number;
|
|
600
615
|
loyalty?: boolean | number;
|
|
601
616
|
minerals?: boolean | number;
|
|
@@ -626,6 +641,7 @@ interface PublicClawGenqlSelection {
|
|
|
626
641
|
id?: boolean | number;
|
|
627
642
|
is_alive?: boolean | number;
|
|
628
643
|
is_molting?: boolean | number;
|
|
644
|
+
last_ping_at?: boolean | number;
|
|
629
645
|
level?: boolean | number;
|
|
630
646
|
loyalty?: boolean | number;
|
|
631
647
|
minerals?: boolean | number;
|
|
@@ -670,6 +686,7 @@ interface QueryGenqlSelection {
|
|
|
670
686
|
countClaws?: boolean | number;
|
|
671
687
|
events?: (GameEventGenqlSelection & {
|
|
672
688
|
__args?: {
|
|
689
|
+
clanId?: (Scalars['String'] | null);
|
|
673
690
|
clawId?: (Scalars['String'] | null);
|
|
674
691
|
eventType?: (Scalars['String'] | null);
|
|
675
692
|
limit?: Scalars['Int'];
|
package/dist/index.js
CHANGED
|
@@ -715,6 +715,9 @@ var types_default = {
|
|
|
715
715
|
"is_molting": [
|
|
716
716
|
3
|
|
717
717
|
],
|
|
718
|
+
"last_ping_at": [
|
|
719
|
+
14
|
|
720
|
+
],
|
|
718
721
|
"level": [
|
|
719
722
|
22
|
|
720
723
|
],
|
|
@@ -857,6 +860,9 @@ var types_default = {
|
|
|
857
860
|
},
|
|
858
861
|
"Float": {},
|
|
859
862
|
"GameEvent": {
|
|
863
|
+
"clan_id": [
|
|
864
|
+
44
|
|
865
|
+
],
|
|
860
866
|
"claw_id": [
|
|
861
867
|
44
|
|
862
868
|
],
|
|
@@ -949,6 +955,15 @@ var types_default = {
|
|
|
949
955
|
]
|
|
950
956
|
}
|
|
951
957
|
],
|
|
958
|
+
"claimPool": [
|
|
959
|
+
28,
|
|
960
|
+
{
|
|
961
|
+
"pool_id": [
|
|
962
|
+
44,
|
|
963
|
+
"String!"
|
|
964
|
+
]
|
|
965
|
+
}
|
|
966
|
+
],
|
|
952
967
|
"createClan": [
|
|
953
968
|
4,
|
|
954
969
|
{
|
|
@@ -1031,6 +1046,9 @@ var types_default = {
|
|
|
1031
1046
|
"leaveClan": [
|
|
1032
1047
|
9
|
|
1033
1048
|
],
|
|
1049
|
+
"ping": [
|
|
1050
|
+
3
|
|
1051
|
+
],
|
|
1034
1052
|
"proposeClanPact": [
|
|
1035
1053
|
6,
|
|
1036
1054
|
{
|
|
@@ -1224,6 +1242,9 @@ var types_default = {
|
|
|
1224
1242
|
"is_molting": [
|
|
1225
1243
|
3
|
|
1226
1244
|
],
|
|
1245
|
+
"last_ping_at": [
|
|
1246
|
+
14
|
|
1247
|
+
],
|
|
1227
1248
|
"level": [
|
|
1228
1249
|
22
|
|
1229
1250
|
],
|
|
@@ -1306,6 +1327,9 @@ var types_default = {
|
|
|
1306
1327
|
"is_molting": [
|
|
1307
1328
|
3
|
|
1308
1329
|
],
|
|
1330
|
+
"last_ping_at": [
|
|
1331
|
+
14
|
|
1332
|
+
],
|
|
1309
1333
|
"level": [
|
|
1310
1334
|
22
|
|
1311
1335
|
],
|
|
@@ -1406,6 +1430,9 @@ var types_default = {
|
|
|
1406
1430
|
"events": [
|
|
1407
1431
|
18,
|
|
1408
1432
|
{
|
|
1433
|
+
"clanId": [
|
|
1434
|
+
44
|
|
1435
|
+
],
|
|
1409
1436
|
"clawId": [
|
|
1410
1437
|
44
|
|
1411
1438
|
],
|