@clawconquest/client 1.13.0 → 1.15.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 +47 -0
- package/dist/index.d.cts +28 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.js +47 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -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
|
],
|
|
@@ -1394,6 +1424,23 @@ var types_default = {
|
|
|
1394
1424
|
"clanApplications": [
|
|
1395
1425
|
5
|
|
1396
1426
|
],
|
|
1427
|
+
"clanMembers": [
|
|
1428
|
+
33,
|
|
1429
|
+
{
|
|
1430
|
+
"clanId": [
|
|
1431
|
+
44,
|
|
1432
|
+
"String!"
|
|
1433
|
+
],
|
|
1434
|
+
"limit": [
|
|
1435
|
+
22,
|
|
1436
|
+
"Int!"
|
|
1437
|
+
],
|
|
1438
|
+
"offset": [
|
|
1439
|
+
22,
|
|
1440
|
+
"Int!"
|
|
1441
|
+
]
|
|
1442
|
+
}
|
|
1443
|
+
],
|
|
1397
1444
|
"clanPacts": [
|
|
1398
1445
|
6
|
|
1399
1446
|
],
|
package/dist/index.d.cts
CHANGED
|
@@ -183,21 +183,32 @@ 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
|
}
|
|
198
208
|
interface Query {
|
|
199
209
|
clan: Clan;
|
|
200
210
|
clanApplications: ClanApplication[];
|
|
211
|
+
clanMembers: PublicClaw[];
|
|
201
212
|
clanPacts: ClanPact[];
|
|
202
213
|
clans: Clan[];
|
|
203
214
|
claw: PublicClaw;
|
|
@@ -606,15 +617,25 @@ interface ProposeClanPactInput {
|
|
|
606
617
|
type: ClanPactType;
|
|
607
618
|
}
|
|
608
619
|
interface PublicClawGenqlSelection {
|
|
620
|
+
aggression?: boolean | number;
|
|
609
621
|
bio?: boolean | number;
|
|
622
|
+
created_at?: boolean | number;
|
|
623
|
+
deception?: boolean | number;
|
|
624
|
+
food?: boolean | number;
|
|
610
625
|
id?: boolean | number;
|
|
611
626
|
is_alive?: boolean | number;
|
|
627
|
+
is_molting?: boolean | number;
|
|
612
628
|
level?: boolean | number;
|
|
629
|
+
loyalty?: boolean | number;
|
|
630
|
+
minerals?: boolean | number;
|
|
631
|
+
molt_ticks_remaining?: boolean | number;
|
|
613
632
|
name?: boolean | number;
|
|
614
633
|
profile_emoji?: boolean | number;
|
|
615
634
|
scent?: boolean | number;
|
|
616
635
|
shell_tier?: boolean | number;
|
|
636
|
+
soft_shell_curse_ticks_remaining?: boolean | number;
|
|
617
637
|
species?: boolean | number;
|
|
638
|
+
territoriality?: boolean | number;
|
|
618
639
|
xp?: boolean | number;
|
|
619
640
|
__typename?: boolean | number;
|
|
620
641
|
__scalar?: boolean | number;
|
|
@@ -626,6 +647,13 @@ interface QueryGenqlSelection {
|
|
|
626
647
|
};
|
|
627
648
|
});
|
|
628
649
|
clanApplications?: ClanApplicationGenqlSelection;
|
|
650
|
+
clanMembers?: (PublicClawGenqlSelection & {
|
|
651
|
+
__args: {
|
|
652
|
+
clanId: Scalars['String'];
|
|
653
|
+
limit?: Scalars['Int'];
|
|
654
|
+
offset?: Scalars['Int'];
|
|
655
|
+
};
|
|
656
|
+
});
|
|
629
657
|
clanPacts?: ClanPactGenqlSelection;
|
|
630
658
|
clans?: ClanGenqlSelection;
|
|
631
659
|
claw?: (PublicClawGenqlSelection & {
|
package/dist/index.d.ts
CHANGED
|
@@ -183,21 +183,32 @@ 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
|
}
|
|
198
208
|
interface Query {
|
|
199
209
|
clan: Clan;
|
|
200
210
|
clanApplications: ClanApplication[];
|
|
211
|
+
clanMembers: PublicClaw[];
|
|
201
212
|
clanPacts: ClanPact[];
|
|
202
213
|
clans: Clan[];
|
|
203
214
|
claw: PublicClaw;
|
|
@@ -606,15 +617,25 @@ interface ProposeClanPactInput {
|
|
|
606
617
|
type: ClanPactType;
|
|
607
618
|
}
|
|
608
619
|
interface PublicClawGenqlSelection {
|
|
620
|
+
aggression?: boolean | number;
|
|
609
621
|
bio?: boolean | number;
|
|
622
|
+
created_at?: boolean | number;
|
|
623
|
+
deception?: boolean | number;
|
|
624
|
+
food?: boolean | number;
|
|
610
625
|
id?: boolean | number;
|
|
611
626
|
is_alive?: boolean | number;
|
|
627
|
+
is_molting?: boolean | number;
|
|
612
628
|
level?: boolean | number;
|
|
629
|
+
loyalty?: boolean | number;
|
|
630
|
+
minerals?: boolean | number;
|
|
631
|
+
molt_ticks_remaining?: boolean | number;
|
|
613
632
|
name?: boolean | number;
|
|
614
633
|
profile_emoji?: boolean | number;
|
|
615
634
|
scent?: boolean | number;
|
|
616
635
|
shell_tier?: boolean | number;
|
|
636
|
+
soft_shell_curse_ticks_remaining?: boolean | number;
|
|
617
637
|
species?: boolean | number;
|
|
638
|
+
territoriality?: boolean | number;
|
|
618
639
|
xp?: boolean | number;
|
|
619
640
|
__typename?: boolean | number;
|
|
620
641
|
__scalar?: boolean | number;
|
|
@@ -626,6 +647,13 @@ interface QueryGenqlSelection {
|
|
|
626
647
|
};
|
|
627
648
|
});
|
|
628
649
|
clanApplications?: ClanApplicationGenqlSelection;
|
|
650
|
+
clanMembers?: (PublicClawGenqlSelection & {
|
|
651
|
+
__args: {
|
|
652
|
+
clanId: Scalars['String'];
|
|
653
|
+
limit?: Scalars['Int'];
|
|
654
|
+
offset?: Scalars['Int'];
|
|
655
|
+
};
|
|
656
|
+
});
|
|
629
657
|
clanPacts?: ClanPactGenqlSelection;
|
|
630
658
|
clans?: ClanGenqlSelection;
|
|
631
659
|
claw?: (PublicClawGenqlSelection & {
|
package/dist/index.js
CHANGED
|
@@ -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
|
],
|
|
@@ -1329,6 +1359,23 @@ var types_default = {
|
|
|
1329
1359
|
"clanApplications": [
|
|
1330
1360
|
5
|
|
1331
1361
|
],
|
|
1362
|
+
"clanMembers": [
|
|
1363
|
+
33,
|
|
1364
|
+
{
|
|
1365
|
+
"clanId": [
|
|
1366
|
+
44,
|
|
1367
|
+
"String!"
|
|
1368
|
+
],
|
|
1369
|
+
"limit": [
|
|
1370
|
+
22,
|
|
1371
|
+
"Int!"
|
|
1372
|
+
],
|
|
1373
|
+
"offset": [
|
|
1374
|
+
22,
|
|
1375
|
+
"Int!"
|
|
1376
|
+
]
|
|
1377
|
+
}
|
|
1378
|
+
],
|
|
1332
1379
|
"clanPacts": [
|
|
1333
1380
|
6
|
|
1334
1381
|
],
|