@clawconquest/client 1.12.0 → 1.14.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 +20 -0
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +20 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -658,6 +658,9 @@ var types_default = {
|
|
|
658
658
|
},
|
|
659
659
|
"Boolean": {},
|
|
660
660
|
"Clan": {
|
|
661
|
+
"clan_leader": [
|
|
662
|
+
33
|
|
663
|
+
],
|
|
661
664
|
"created_at": [
|
|
662
665
|
14
|
|
663
666
|
],
|
|
@@ -1391,6 +1394,23 @@ var types_default = {
|
|
|
1391
1394
|
"clanApplications": [
|
|
1392
1395
|
5
|
|
1393
1396
|
],
|
|
1397
|
+
"clanMembers": [
|
|
1398
|
+
33,
|
|
1399
|
+
{
|
|
1400
|
+
"clanId": [
|
|
1401
|
+
44,
|
|
1402
|
+
"String!"
|
|
1403
|
+
],
|
|
1404
|
+
"limit": [
|
|
1405
|
+
22,
|
|
1406
|
+
"Int!"
|
|
1407
|
+
],
|
|
1408
|
+
"offset": [
|
|
1409
|
+
22,
|
|
1410
|
+
"Int!"
|
|
1411
|
+
]
|
|
1412
|
+
}
|
|
1413
|
+
],
|
|
1394
1414
|
"clanPacts": [
|
|
1395
1415
|
6
|
|
1396
1416
|
],
|
package/dist/index.d.cts
CHANGED
|
@@ -8,6 +8,7 @@ type Scalars = {
|
|
|
8
8
|
};
|
|
9
9
|
type ApplicationStatus = 'ACCEPTED' | 'PENDING' | 'REJECTED';
|
|
10
10
|
interface Clan {
|
|
11
|
+
clan_leader: (PublicClaw | null);
|
|
11
12
|
created_at: Scalars['DateTime'];
|
|
12
13
|
created_at_tick: Scalars['Int'];
|
|
13
14
|
description: (Scalars['String'] | null);
|
|
@@ -197,6 +198,7 @@ interface PublicClaw {
|
|
|
197
198
|
interface Query {
|
|
198
199
|
clan: Clan;
|
|
199
200
|
clanApplications: ClanApplication[];
|
|
201
|
+
clanMembers: PublicClaw[];
|
|
200
202
|
clanPacts: ClanPact[];
|
|
201
203
|
clans: Clan[];
|
|
202
204
|
claw: PublicClaw;
|
|
@@ -304,6 +306,7 @@ interface AssignUnitInput {
|
|
|
304
306
|
unit_ids: Scalars['String'][];
|
|
305
307
|
}
|
|
306
308
|
interface ClanGenqlSelection {
|
|
309
|
+
clan_leader?: PublicClawGenqlSelection;
|
|
307
310
|
created_at?: boolean | number;
|
|
308
311
|
created_at_tick?: boolean | number;
|
|
309
312
|
description?: boolean | number;
|
|
@@ -624,6 +627,13 @@ interface QueryGenqlSelection {
|
|
|
624
627
|
};
|
|
625
628
|
});
|
|
626
629
|
clanApplications?: ClanApplicationGenqlSelection;
|
|
630
|
+
clanMembers?: (PublicClawGenqlSelection & {
|
|
631
|
+
__args: {
|
|
632
|
+
clanId: Scalars['String'];
|
|
633
|
+
limit?: Scalars['Int'];
|
|
634
|
+
offset?: Scalars['Int'];
|
|
635
|
+
};
|
|
636
|
+
});
|
|
627
637
|
clanPacts?: ClanPactGenqlSelection;
|
|
628
638
|
clans?: ClanGenqlSelection;
|
|
629
639
|
claw?: (PublicClawGenqlSelection & {
|
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ type Scalars = {
|
|
|
8
8
|
};
|
|
9
9
|
type ApplicationStatus = 'ACCEPTED' | 'PENDING' | 'REJECTED';
|
|
10
10
|
interface Clan {
|
|
11
|
+
clan_leader: (PublicClaw | null);
|
|
11
12
|
created_at: Scalars['DateTime'];
|
|
12
13
|
created_at_tick: Scalars['Int'];
|
|
13
14
|
description: (Scalars['String'] | null);
|
|
@@ -197,6 +198,7 @@ interface PublicClaw {
|
|
|
197
198
|
interface Query {
|
|
198
199
|
clan: Clan;
|
|
199
200
|
clanApplications: ClanApplication[];
|
|
201
|
+
clanMembers: PublicClaw[];
|
|
200
202
|
clanPacts: ClanPact[];
|
|
201
203
|
clans: Clan[];
|
|
202
204
|
claw: PublicClaw;
|
|
@@ -304,6 +306,7 @@ interface AssignUnitInput {
|
|
|
304
306
|
unit_ids: Scalars['String'][];
|
|
305
307
|
}
|
|
306
308
|
interface ClanGenqlSelection {
|
|
309
|
+
clan_leader?: PublicClawGenqlSelection;
|
|
307
310
|
created_at?: boolean | number;
|
|
308
311
|
created_at_tick?: boolean | number;
|
|
309
312
|
description?: boolean | number;
|
|
@@ -624,6 +627,13 @@ interface QueryGenqlSelection {
|
|
|
624
627
|
};
|
|
625
628
|
});
|
|
626
629
|
clanApplications?: ClanApplicationGenqlSelection;
|
|
630
|
+
clanMembers?: (PublicClawGenqlSelection & {
|
|
631
|
+
__args: {
|
|
632
|
+
clanId: Scalars['String'];
|
|
633
|
+
limit?: Scalars['Int'];
|
|
634
|
+
offset?: Scalars['Int'];
|
|
635
|
+
};
|
|
636
|
+
});
|
|
627
637
|
clanPacts?: ClanPactGenqlSelection;
|
|
628
638
|
clans?: ClanGenqlSelection;
|
|
629
639
|
claw?: (PublicClawGenqlSelection & {
|
package/dist/index.js
CHANGED
|
@@ -593,6 +593,9 @@ var types_default = {
|
|
|
593
593
|
},
|
|
594
594
|
"Boolean": {},
|
|
595
595
|
"Clan": {
|
|
596
|
+
"clan_leader": [
|
|
597
|
+
33
|
|
598
|
+
],
|
|
596
599
|
"created_at": [
|
|
597
600
|
14
|
|
598
601
|
],
|
|
@@ -1326,6 +1329,23 @@ var types_default = {
|
|
|
1326
1329
|
"clanApplications": [
|
|
1327
1330
|
5
|
|
1328
1331
|
],
|
|
1332
|
+
"clanMembers": [
|
|
1333
|
+
33,
|
|
1334
|
+
{
|
|
1335
|
+
"clanId": [
|
|
1336
|
+
44,
|
|
1337
|
+
"String!"
|
|
1338
|
+
],
|
|
1339
|
+
"limit": [
|
|
1340
|
+
22,
|
|
1341
|
+
"Int!"
|
|
1342
|
+
],
|
|
1343
|
+
"offset": [
|
|
1344
|
+
22,
|
|
1345
|
+
"Int!"
|
|
1346
|
+
]
|
|
1347
|
+
}
|
|
1348
|
+
],
|
|
1329
1349
|
"clanPacts": [
|
|
1330
1350
|
6
|
|
1331
1351
|
],
|