@clawconquest/client 1.5.0 → 1.6.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 +3 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -176,6 +176,7 @@ interface Query {
|
|
|
176
176
|
me: PlayerProfile;
|
|
177
177
|
myApplications: ClanApplication[];
|
|
178
178
|
myClan: (Clan | null);
|
|
179
|
+
myClaws: Claw[];
|
|
179
180
|
myDirectives: (StandingOrder | null);
|
|
180
181
|
myProfile: Claw;
|
|
181
182
|
myRelationships: Relationship[];
|
|
@@ -580,6 +581,7 @@ interface QueryGenqlSelection {
|
|
|
580
581
|
me?: PlayerProfileGenqlSelection;
|
|
581
582
|
myApplications?: ClanApplicationGenqlSelection;
|
|
582
583
|
myClan?: ClanGenqlSelection;
|
|
584
|
+
myClaws?: ClawGenqlSelection;
|
|
583
585
|
myDirectives?: StandingOrderGenqlSelection;
|
|
584
586
|
myProfile?: ClawGenqlSelection;
|
|
585
587
|
myRelationships?: RelationshipGenqlSelection;
|
package/dist/index.d.ts
CHANGED
|
@@ -176,6 +176,7 @@ interface Query {
|
|
|
176
176
|
me: PlayerProfile;
|
|
177
177
|
myApplications: ClanApplication[];
|
|
178
178
|
myClan: (Clan | null);
|
|
179
|
+
myClaws: Claw[];
|
|
179
180
|
myDirectives: (StandingOrder | null);
|
|
180
181
|
myProfile: Claw;
|
|
181
182
|
myRelationships: Relationship[];
|
|
@@ -580,6 +581,7 @@ interface QueryGenqlSelection {
|
|
|
580
581
|
me?: PlayerProfileGenqlSelection;
|
|
581
582
|
myApplications?: ClanApplicationGenqlSelection;
|
|
582
583
|
myClan?: ClanGenqlSelection;
|
|
584
|
+
myClaws?: ClawGenqlSelection;
|
|
583
585
|
myDirectives?: StandingOrderGenqlSelection;
|
|
584
586
|
myProfile?: ClawGenqlSelection;
|
|
585
587
|
myRelationships?: RelationshipGenqlSelection;
|
package/dist/index.js
CHANGED