@clawconquest/client 1.17.0 → 1.19.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 +21 -0
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +21 -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
|
],
|
|
@@ -1017,6 +1020,15 @@ var types_default = {
|
|
|
1017
1020
|
]
|
|
1018
1021
|
}
|
|
1019
1022
|
],
|
|
1023
|
+
"claimPool": [
|
|
1024
|
+
28,
|
|
1025
|
+
{
|
|
1026
|
+
"pool_id": [
|
|
1027
|
+
44,
|
|
1028
|
+
"String!"
|
|
1029
|
+
]
|
|
1030
|
+
}
|
|
1031
|
+
],
|
|
1020
1032
|
"createClan": [
|
|
1021
1033
|
4,
|
|
1022
1034
|
{
|
|
@@ -1099,6 +1111,9 @@ var types_default = {
|
|
|
1099
1111
|
"leaveClan": [
|
|
1100
1112
|
9
|
|
1101
1113
|
],
|
|
1114
|
+
"ping": [
|
|
1115
|
+
3
|
|
1116
|
+
],
|
|
1102
1117
|
"proposeClanPact": [
|
|
1103
1118
|
6,
|
|
1104
1119
|
{
|
|
@@ -1292,6 +1307,9 @@ var types_default = {
|
|
|
1292
1307
|
"is_molting": [
|
|
1293
1308
|
3
|
|
1294
1309
|
],
|
|
1310
|
+
"last_ping_at": [
|
|
1311
|
+
14
|
|
1312
|
+
],
|
|
1295
1313
|
"level": [
|
|
1296
1314
|
22
|
|
1297
1315
|
],
|
|
@@ -1374,6 +1392,9 @@ var types_default = {
|
|
|
1374
1392
|
"is_molting": [
|
|
1375
1393
|
3
|
|
1376
1394
|
],
|
|
1395
|
+
"last_ping_at": [
|
|
1396
|
+
14
|
|
1397
|
+
],
|
|
1377
1398
|
"level": [
|
|
1378
1399
|
22
|
|
1379
1400
|
],
|
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'];
|
|
@@ -107,6 +108,7 @@ interface Mutation {
|
|
|
107
108
|
assign_units: Unit[];
|
|
108
109
|
breakClanPact: ClanPact;
|
|
109
110
|
cancelApplication: ClanApplication;
|
|
111
|
+
claimPool: Pool;
|
|
110
112
|
createClan: Clan;
|
|
111
113
|
createClaw: CreateClawPayload;
|
|
112
114
|
deploy_spy: SpyDeployment;
|
|
@@ -117,6 +119,7 @@ interface Mutation {
|
|
|
117
119
|
initiate_siege: Siege;
|
|
118
120
|
kickMember: Claw;
|
|
119
121
|
leaveClan: Claw;
|
|
122
|
+
ping: Scalars['Boolean'];
|
|
120
123
|
proposeClanPact: ClanPact;
|
|
121
124
|
recruit_units: Unit;
|
|
122
125
|
regenerateClawKey: RegenerateKeyPayload;
|
|
@@ -168,6 +171,7 @@ interface PrivateClaw {
|
|
|
168
171
|
id: Scalars['ID'];
|
|
169
172
|
is_alive: Scalars['Boolean'];
|
|
170
173
|
is_molting: Scalars['Boolean'];
|
|
174
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
171
175
|
level: Scalars['Int'];
|
|
172
176
|
loyalty: Scalars['Float'];
|
|
173
177
|
minerals: Scalars['Float'];
|
|
@@ -192,6 +196,7 @@ interface PublicClaw {
|
|
|
192
196
|
id: Scalars['ID'];
|
|
193
197
|
is_alive: Scalars['Boolean'];
|
|
194
198
|
is_molting: Scalars['Boolean'];
|
|
199
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
195
200
|
level: Scalars['Int'];
|
|
196
201
|
loyalty: Scalars['Float'];
|
|
197
202
|
minerals: Scalars['Float'];
|
|
@@ -365,6 +370,7 @@ interface ClawGenqlSelection {
|
|
|
365
370
|
id?: boolean | number;
|
|
366
371
|
is_alive?: boolean | number;
|
|
367
372
|
is_molting?: boolean | number;
|
|
373
|
+
last_ping_at?: boolean | number;
|
|
368
374
|
level?: boolean | number;
|
|
369
375
|
loyalty?: boolean | number;
|
|
370
376
|
minerals?: boolean | number;
|
|
@@ -465,6 +471,11 @@ interface MutationGenqlSelection {
|
|
|
465
471
|
applicationId: Scalars['String'];
|
|
466
472
|
};
|
|
467
473
|
});
|
|
474
|
+
claimPool?: (PoolGenqlSelection & {
|
|
475
|
+
__args: {
|
|
476
|
+
pool_id: Scalars['String'];
|
|
477
|
+
};
|
|
478
|
+
});
|
|
468
479
|
createClan?: (ClanGenqlSelection & {
|
|
469
480
|
__args: {
|
|
470
481
|
input: CreateClanInput;
|
|
@@ -508,6 +519,7 @@ interface MutationGenqlSelection {
|
|
|
508
519
|
};
|
|
509
520
|
});
|
|
510
521
|
leaveClan?: ClawGenqlSelection;
|
|
522
|
+
ping?: boolean | number;
|
|
511
523
|
proposeClanPact?: (ClanPactGenqlSelection & {
|
|
512
524
|
__args: {
|
|
513
525
|
input: ProposeClanPactInput;
|
|
@@ -598,6 +610,7 @@ interface PrivateClawGenqlSelection {
|
|
|
598
610
|
id?: boolean | number;
|
|
599
611
|
is_alive?: boolean | number;
|
|
600
612
|
is_molting?: boolean | number;
|
|
613
|
+
last_ping_at?: boolean | number;
|
|
601
614
|
level?: boolean | number;
|
|
602
615
|
loyalty?: boolean | number;
|
|
603
616
|
minerals?: boolean | number;
|
|
@@ -628,6 +641,7 @@ interface PublicClawGenqlSelection {
|
|
|
628
641
|
id?: boolean | number;
|
|
629
642
|
is_alive?: boolean | number;
|
|
630
643
|
is_molting?: boolean | number;
|
|
644
|
+
last_ping_at?: boolean | number;
|
|
631
645
|
level?: boolean | number;
|
|
632
646
|
loyalty?: boolean | number;
|
|
633
647
|
minerals?: boolean | number;
|
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'];
|
|
@@ -107,6 +108,7 @@ interface Mutation {
|
|
|
107
108
|
assign_units: Unit[];
|
|
108
109
|
breakClanPact: ClanPact;
|
|
109
110
|
cancelApplication: ClanApplication;
|
|
111
|
+
claimPool: Pool;
|
|
110
112
|
createClan: Clan;
|
|
111
113
|
createClaw: CreateClawPayload;
|
|
112
114
|
deploy_spy: SpyDeployment;
|
|
@@ -117,6 +119,7 @@ interface Mutation {
|
|
|
117
119
|
initiate_siege: Siege;
|
|
118
120
|
kickMember: Claw;
|
|
119
121
|
leaveClan: Claw;
|
|
122
|
+
ping: Scalars['Boolean'];
|
|
120
123
|
proposeClanPact: ClanPact;
|
|
121
124
|
recruit_units: Unit;
|
|
122
125
|
regenerateClawKey: RegenerateKeyPayload;
|
|
@@ -168,6 +171,7 @@ interface PrivateClaw {
|
|
|
168
171
|
id: Scalars['ID'];
|
|
169
172
|
is_alive: Scalars['Boolean'];
|
|
170
173
|
is_molting: Scalars['Boolean'];
|
|
174
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
171
175
|
level: Scalars['Int'];
|
|
172
176
|
loyalty: Scalars['Float'];
|
|
173
177
|
minerals: Scalars['Float'];
|
|
@@ -192,6 +196,7 @@ interface PublicClaw {
|
|
|
192
196
|
id: Scalars['ID'];
|
|
193
197
|
is_alive: Scalars['Boolean'];
|
|
194
198
|
is_molting: Scalars['Boolean'];
|
|
199
|
+
last_ping_at: (Scalars['DateTime'] | null);
|
|
195
200
|
level: Scalars['Int'];
|
|
196
201
|
loyalty: Scalars['Float'];
|
|
197
202
|
minerals: Scalars['Float'];
|
|
@@ -365,6 +370,7 @@ interface ClawGenqlSelection {
|
|
|
365
370
|
id?: boolean | number;
|
|
366
371
|
is_alive?: boolean | number;
|
|
367
372
|
is_molting?: boolean | number;
|
|
373
|
+
last_ping_at?: boolean | number;
|
|
368
374
|
level?: boolean | number;
|
|
369
375
|
loyalty?: boolean | number;
|
|
370
376
|
minerals?: boolean | number;
|
|
@@ -465,6 +471,11 @@ interface MutationGenqlSelection {
|
|
|
465
471
|
applicationId: Scalars['String'];
|
|
466
472
|
};
|
|
467
473
|
});
|
|
474
|
+
claimPool?: (PoolGenqlSelection & {
|
|
475
|
+
__args: {
|
|
476
|
+
pool_id: Scalars['String'];
|
|
477
|
+
};
|
|
478
|
+
});
|
|
468
479
|
createClan?: (ClanGenqlSelection & {
|
|
469
480
|
__args: {
|
|
470
481
|
input: CreateClanInput;
|
|
@@ -508,6 +519,7 @@ interface MutationGenqlSelection {
|
|
|
508
519
|
};
|
|
509
520
|
});
|
|
510
521
|
leaveClan?: ClawGenqlSelection;
|
|
522
|
+
ping?: boolean | number;
|
|
511
523
|
proposeClanPact?: (ClanPactGenqlSelection & {
|
|
512
524
|
__args: {
|
|
513
525
|
input: ProposeClanPactInput;
|
|
@@ -598,6 +610,7 @@ interface PrivateClawGenqlSelection {
|
|
|
598
610
|
id?: boolean | number;
|
|
599
611
|
is_alive?: boolean | number;
|
|
600
612
|
is_molting?: boolean | number;
|
|
613
|
+
last_ping_at?: boolean | number;
|
|
601
614
|
level?: boolean | number;
|
|
602
615
|
loyalty?: boolean | number;
|
|
603
616
|
minerals?: boolean | number;
|
|
@@ -628,6 +641,7 @@ interface PublicClawGenqlSelection {
|
|
|
628
641
|
id?: boolean | number;
|
|
629
642
|
is_alive?: boolean | number;
|
|
630
643
|
is_molting?: boolean | number;
|
|
644
|
+
last_ping_at?: boolean | number;
|
|
631
645
|
level?: boolean | number;
|
|
632
646
|
loyalty?: boolean | number;
|
|
633
647
|
minerals?: boolean | number;
|
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
|
],
|
|
@@ -952,6 +955,15 @@ var types_default = {
|
|
|
952
955
|
]
|
|
953
956
|
}
|
|
954
957
|
],
|
|
958
|
+
"claimPool": [
|
|
959
|
+
28,
|
|
960
|
+
{
|
|
961
|
+
"pool_id": [
|
|
962
|
+
44,
|
|
963
|
+
"String!"
|
|
964
|
+
]
|
|
965
|
+
}
|
|
966
|
+
],
|
|
955
967
|
"createClan": [
|
|
956
968
|
4,
|
|
957
969
|
{
|
|
@@ -1034,6 +1046,9 @@ var types_default = {
|
|
|
1034
1046
|
"leaveClan": [
|
|
1035
1047
|
9
|
|
1036
1048
|
],
|
|
1049
|
+
"ping": [
|
|
1050
|
+
3
|
|
1051
|
+
],
|
|
1037
1052
|
"proposeClanPact": [
|
|
1038
1053
|
6,
|
|
1039
1054
|
{
|
|
@@ -1227,6 +1242,9 @@ var types_default = {
|
|
|
1227
1242
|
"is_molting": [
|
|
1228
1243
|
3
|
|
1229
1244
|
],
|
|
1245
|
+
"last_ping_at": [
|
|
1246
|
+
14
|
|
1247
|
+
],
|
|
1230
1248
|
"level": [
|
|
1231
1249
|
22
|
|
1232
1250
|
],
|
|
@@ -1309,6 +1327,9 @@ var types_default = {
|
|
|
1309
1327
|
"is_molting": [
|
|
1310
1328
|
3
|
|
1311
1329
|
],
|
|
1330
|
+
"last_ping_at": [
|
|
1331
|
+
14
|
|
1332
|
+
],
|
|
1312
1333
|
"level": [
|
|
1313
1334
|
22
|
|
1314
1335
|
],
|