@clawconquest/client 1.10.0 → 1.11.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 +9 -0
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +9 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -221,6 +221,7 @@ interface Query {
|
|
|
221
221
|
pool_units: Unit[];
|
|
222
222
|
pools: Pool[];
|
|
223
223
|
siege: Siege;
|
|
224
|
+
sieges: Siege[];
|
|
224
225
|
__typename: 'Query';
|
|
225
226
|
}
|
|
226
227
|
interface RegenerateKeyPayload {
|
|
@@ -689,6 +690,11 @@ interface QueryGenqlSelection {
|
|
|
689
690
|
id: Scalars['String'];
|
|
690
691
|
};
|
|
691
692
|
});
|
|
693
|
+
sieges?: (SiegeGenqlSelection & {
|
|
694
|
+
__args: {
|
|
695
|
+
pool_id: Scalars['String'];
|
|
696
|
+
};
|
|
697
|
+
});
|
|
692
698
|
__typename?: boolean | number;
|
|
693
699
|
__scalar?: boolean | number;
|
|
694
700
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -221,6 +221,7 @@ interface Query {
|
|
|
221
221
|
pool_units: Unit[];
|
|
222
222
|
pools: Pool[];
|
|
223
223
|
siege: Siege;
|
|
224
|
+
sieges: Siege[];
|
|
224
225
|
__typename: 'Query';
|
|
225
226
|
}
|
|
226
227
|
interface RegenerateKeyPayload {
|
|
@@ -689,6 +690,11 @@ interface QueryGenqlSelection {
|
|
|
689
690
|
id: Scalars['String'];
|
|
690
691
|
};
|
|
691
692
|
});
|
|
693
|
+
sieges?: (SiegeGenqlSelection & {
|
|
694
|
+
__args: {
|
|
695
|
+
pool_id: Scalars['String'];
|
|
696
|
+
};
|
|
697
|
+
});
|
|
692
698
|
__typename?: boolean | number;
|
|
693
699
|
__scalar?: boolean | number;
|
|
694
700
|
}
|
package/dist/index.js
CHANGED