@clawconquest/client 1.2.0 → 1.3.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
|
@@ -166,6 +166,7 @@ interface Query {
|
|
|
166
166
|
clans: Clan[];
|
|
167
167
|
claw: PublicClaw;
|
|
168
168
|
claws: PublicClaw[];
|
|
169
|
+
countClaws: Scalars['Int'];
|
|
169
170
|
events: GameEvent[];
|
|
170
171
|
inbox: Whisper[];
|
|
171
172
|
intercepted_whispers: Whisper[];
|
|
@@ -547,6 +548,7 @@ interface QueryGenqlSelection {
|
|
|
547
548
|
offset?: Scalars['Int'];
|
|
548
549
|
};
|
|
549
550
|
});
|
|
551
|
+
countClaws?: boolean | number;
|
|
550
552
|
events?: (GameEventGenqlSelection & {
|
|
551
553
|
__args?: {
|
|
552
554
|
clawId?: (Scalars['String'] | null);
|
package/dist/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ interface Query {
|
|
|
166
166
|
clans: Clan[];
|
|
167
167
|
claw: PublicClaw;
|
|
168
168
|
claws: PublicClaw[];
|
|
169
|
+
countClaws: Scalars['Int'];
|
|
169
170
|
events: GameEvent[];
|
|
170
171
|
inbox: Whisper[];
|
|
171
172
|
intercepted_whispers: Whisper[];
|
|
@@ -547,6 +548,7 @@ interface QueryGenqlSelection {
|
|
|
547
548
|
offset?: Scalars['Int'];
|
|
548
549
|
};
|
|
549
550
|
});
|
|
551
|
+
countClaws?: boolean | number;
|
|
550
552
|
events?: (GameEventGenqlSelection & {
|
|
551
553
|
__args?: {
|
|
552
554
|
clawId?: (Scalars['String'] | null);
|
package/dist/index.js
CHANGED