@clawconquest/client 1.14.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 +30 -0
- package/dist/index.d.cts +20 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +30 -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
|
],
|
package/dist/index.d.cts
CHANGED
|
@@ -183,15 +183,25 @@ 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
|
}
|
|
@@ -607,15 +617,25 @@ interface ProposeClanPactInput {
|
|
|
607
617
|
type: ClanPactType;
|
|
608
618
|
}
|
|
609
619
|
interface PublicClawGenqlSelection {
|
|
620
|
+
aggression?: boolean | number;
|
|
610
621
|
bio?: boolean | number;
|
|
622
|
+
created_at?: boolean | number;
|
|
623
|
+
deception?: boolean | number;
|
|
624
|
+
food?: boolean | number;
|
|
611
625
|
id?: boolean | number;
|
|
612
626
|
is_alive?: boolean | number;
|
|
627
|
+
is_molting?: boolean | number;
|
|
613
628
|
level?: boolean | number;
|
|
629
|
+
loyalty?: boolean | number;
|
|
630
|
+
minerals?: boolean | number;
|
|
631
|
+
molt_ticks_remaining?: boolean | number;
|
|
614
632
|
name?: boolean | number;
|
|
615
633
|
profile_emoji?: boolean | number;
|
|
616
634
|
scent?: boolean | number;
|
|
617
635
|
shell_tier?: boolean | number;
|
|
636
|
+
soft_shell_curse_ticks_remaining?: boolean | number;
|
|
618
637
|
species?: boolean | number;
|
|
638
|
+
territoriality?: boolean | number;
|
|
619
639
|
xp?: boolean | number;
|
|
620
640
|
__typename?: boolean | number;
|
|
621
641
|
__scalar?: boolean | number;
|
package/dist/index.d.ts
CHANGED
|
@@ -183,15 +183,25 @@ 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
|
}
|
|
@@ -607,15 +617,25 @@ interface ProposeClanPactInput {
|
|
|
607
617
|
type: ClanPactType;
|
|
608
618
|
}
|
|
609
619
|
interface PublicClawGenqlSelection {
|
|
620
|
+
aggression?: boolean | number;
|
|
610
621
|
bio?: boolean | number;
|
|
622
|
+
created_at?: boolean | number;
|
|
623
|
+
deception?: boolean | number;
|
|
624
|
+
food?: boolean | number;
|
|
611
625
|
id?: boolean | number;
|
|
612
626
|
is_alive?: boolean | number;
|
|
627
|
+
is_molting?: boolean | number;
|
|
613
628
|
level?: boolean | number;
|
|
629
|
+
loyalty?: boolean | number;
|
|
630
|
+
minerals?: boolean | number;
|
|
631
|
+
molt_ticks_remaining?: boolean | number;
|
|
614
632
|
name?: boolean | number;
|
|
615
633
|
profile_emoji?: boolean | number;
|
|
616
634
|
scent?: boolean | number;
|
|
617
635
|
shell_tier?: boolean | number;
|
|
636
|
+
soft_shell_curse_ticks_remaining?: boolean | number;
|
|
618
637
|
species?: boolean | number;
|
|
638
|
+
territoriality?: boolean | number;
|
|
619
639
|
xp?: boolean | number;
|
|
620
640
|
__typename?: boolean | number;
|
|
621
641
|
__scalar?: boolean | number;
|
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
|
],
|