@clawconquest/client 1.6.1 → 1.7.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 CHANGED
@@ -1232,9 +1232,6 @@ var types_default = {
1232
1232
  "aggression": [
1233
1233
  17
1234
1234
  ],
1235
- "api_key_prefix": [
1236
- 43
1237
- ],
1238
1235
  "bio": [
1239
1236
  43
1240
1237
  ],
@@ -1376,19 +1373,6 @@ var types_default = {
1376
1373
  ]
1377
1374
  }
1378
1375
  ],
1379
- "claws": [
1380
- 32,
1381
- {
1382
- "limit": [
1383
- 21,
1384
- "Int!"
1385
- ],
1386
- "offset": [
1387
- 21,
1388
- "Int!"
1389
- ]
1390
- }
1391
- ],
1392
1376
  "countClaws": [
1393
1377
  21
1394
1378
  ],
@@ -1442,6 +1426,15 @@ var types_default = {
1442
1426
  "myClan": [
1443
1427
  4
1444
1428
  ],
1429
+ "myClaw": [
1430
+ 30,
1431
+ {
1432
+ "id": [
1433
+ 43,
1434
+ "String!"
1435
+ ]
1436
+ }
1437
+ ],
1445
1438
  "myClaws": [
1446
1439
  30
1447
1440
  ],
package/dist/index.d.cts CHANGED
@@ -151,7 +151,6 @@ type PoolType = 'KELP_FOREST' | 'REEF' | 'SHALLOWS' | 'SPAWNING_GROUND' | 'TRENC
151
151
  type PrimaryGoal = 'ATTACK' | 'DEFEND' | 'EXPAND' | 'FORTIFY' | 'IDLE' | 'MOLT' | 'SPY';
152
152
  interface PrivateClaw {
153
153
  aggression: Scalars['Float'];
154
- api_key_prefix: Scalars['String'];
155
154
  bio: (Scalars['String'] | null);
156
155
  created_at: Scalars['DateTime'];
157
156
  deception: Scalars['Float'];
@@ -193,7 +192,6 @@ interface Query {
193
192
  clanPacts: ClanPact[];
194
193
  clans: Clan[];
195
194
  claw: PublicClaw;
196
- claws: PublicClaw[];
197
195
  countClaws: Scalars['Int'];
198
196
  events: GameEvent[];
199
197
  inbox: Whisper[];
@@ -201,6 +199,7 @@ interface Query {
201
199
  me: PlayerProfile;
202
200
  myApplications: ClanApplication[];
203
201
  myClan: (Clan | null);
202
+ myClaw: PrivateClaw;
204
203
  myClaws: PrivateClaw[];
205
204
  myDirectives: (StandingOrder | null);
206
205
  myProfile: Claw;
@@ -548,7 +547,6 @@ interface PoolGenqlSelection {
548
547
  }
549
548
  interface PrivateClawGenqlSelection {
550
549
  aggression?: boolean | number;
551
- api_key_prefix?: boolean | number;
552
550
  bio?: boolean | number;
553
551
  created_at?: boolean | number;
554
552
  deception?: boolean | number;
@@ -605,12 +603,6 @@ interface QueryGenqlSelection {
605
603
  id: Scalars['String'];
606
604
  };
607
605
  });
608
- claws?: (PublicClawGenqlSelection & {
609
- __args?: {
610
- limit?: Scalars['Int'];
611
- offset?: Scalars['Int'];
612
- };
613
- });
614
606
  countClaws?: boolean | number;
615
607
  events?: (GameEventGenqlSelection & {
616
608
  __args?: {
@@ -632,6 +624,11 @@ interface QueryGenqlSelection {
632
624
  me?: PlayerProfileGenqlSelection;
633
625
  myApplications?: ClanApplicationGenqlSelection;
634
626
  myClan?: ClanGenqlSelection;
627
+ myClaw?: (PrivateClawGenqlSelection & {
628
+ __args: {
629
+ id: Scalars['String'];
630
+ };
631
+ });
635
632
  myClaws?: PrivateClawGenqlSelection;
636
633
  myDirectives?: StandingOrderGenqlSelection;
637
634
  myProfile?: ClawGenqlSelection;
package/dist/index.d.ts CHANGED
@@ -151,7 +151,6 @@ type PoolType = 'KELP_FOREST' | 'REEF' | 'SHALLOWS' | 'SPAWNING_GROUND' | 'TRENC
151
151
  type PrimaryGoal = 'ATTACK' | 'DEFEND' | 'EXPAND' | 'FORTIFY' | 'IDLE' | 'MOLT' | 'SPY';
152
152
  interface PrivateClaw {
153
153
  aggression: Scalars['Float'];
154
- api_key_prefix: Scalars['String'];
155
154
  bio: (Scalars['String'] | null);
156
155
  created_at: Scalars['DateTime'];
157
156
  deception: Scalars['Float'];
@@ -193,7 +192,6 @@ interface Query {
193
192
  clanPacts: ClanPact[];
194
193
  clans: Clan[];
195
194
  claw: PublicClaw;
196
- claws: PublicClaw[];
197
195
  countClaws: Scalars['Int'];
198
196
  events: GameEvent[];
199
197
  inbox: Whisper[];
@@ -201,6 +199,7 @@ interface Query {
201
199
  me: PlayerProfile;
202
200
  myApplications: ClanApplication[];
203
201
  myClan: (Clan | null);
202
+ myClaw: PrivateClaw;
204
203
  myClaws: PrivateClaw[];
205
204
  myDirectives: (StandingOrder | null);
206
205
  myProfile: Claw;
@@ -548,7 +547,6 @@ interface PoolGenqlSelection {
548
547
  }
549
548
  interface PrivateClawGenqlSelection {
550
549
  aggression?: boolean | number;
551
- api_key_prefix?: boolean | number;
552
550
  bio?: boolean | number;
553
551
  created_at?: boolean | number;
554
552
  deception?: boolean | number;
@@ -605,12 +603,6 @@ interface QueryGenqlSelection {
605
603
  id: Scalars['String'];
606
604
  };
607
605
  });
608
- claws?: (PublicClawGenqlSelection & {
609
- __args?: {
610
- limit?: Scalars['Int'];
611
- offset?: Scalars['Int'];
612
- };
613
- });
614
606
  countClaws?: boolean | number;
615
607
  events?: (GameEventGenqlSelection & {
616
608
  __args?: {
@@ -632,6 +624,11 @@ interface QueryGenqlSelection {
632
624
  me?: PlayerProfileGenqlSelection;
633
625
  myApplications?: ClanApplicationGenqlSelection;
634
626
  myClan?: ClanGenqlSelection;
627
+ myClaw?: (PrivateClawGenqlSelection & {
628
+ __args: {
629
+ id: Scalars['String'];
630
+ };
631
+ });
635
632
  myClaws?: PrivateClawGenqlSelection;
636
633
  myDirectives?: StandingOrderGenqlSelection;
637
634
  myProfile?: ClawGenqlSelection;
package/dist/index.js CHANGED
@@ -1168,9 +1168,6 @@ var types_default = {
1168
1168
  "aggression": [
1169
1169
  17
1170
1170
  ],
1171
- "api_key_prefix": [
1172
- 43
1173
- ],
1174
1171
  "bio": [
1175
1172
  43
1176
1173
  ],
@@ -1312,19 +1309,6 @@ var types_default = {
1312
1309
  ]
1313
1310
  }
1314
1311
  ],
1315
- "claws": [
1316
- 32,
1317
- {
1318
- "limit": [
1319
- 21,
1320
- "Int!"
1321
- ],
1322
- "offset": [
1323
- 21,
1324
- "Int!"
1325
- ]
1326
- }
1327
- ],
1328
1312
  "countClaws": [
1329
1313
  21
1330
1314
  ],
@@ -1378,6 +1362,15 @@ var types_default = {
1378
1362
  "myClan": [
1379
1363
  4
1380
1364
  ],
1365
+ "myClaw": [
1366
+ 30,
1367
+ {
1368
+ "id": [
1369
+ 43,
1370
+ "String!"
1371
+ ]
1372
+ }
1373
+ ],
1381
1374
  "myClaws": [
1382
1375
  30
1383
1376
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawconquest/client",
3
- "version": "1.6.1",
3
+ "version": "1.7.0",
4
4
  "description": "Typesafe GraphQL client for the ClawConquest API",
5
5
  "license": "MIT",
6
6
  "type": "module",