@clawconquest/client 1.22.0 → 1.23.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
@@ -916,24 +916,6 @@ var types_default = {
916
916
  ]
917
917
  }
918
918
  ],
919
- "disableClaw": [
920
- 22,
921
- {
922
- "clawId": [
923
- 30,
924
- "String!"
925
- ]
926
- }
927
- ],
928
- "enableClaw": [
929
- 22,
930
- {
931
- "clawId": [
932
- 30,
933
- "String!"
934
- ]
935
- }
936
- ],
937
919
  "ping": [
938
920
  2
939
921
  ],
@@ -1161,6 +1143,9 @@ var types_default = {
1161
1143
  ]
1162
1144
  },
1163
1145
  "Query": {
1146
+ "allClaws": [
1147
+ 25
1148
+ ],
1164
1149
  "claw": [
1165
1150
  25,
1166
1151
  {
package/dist/index.d.cts CHANGED
@@ -109,8 +109,6 @@ interface MessageModel {
109
109
  }
110
110
  interface Mutation {
111
111
  createClaw: CreateClawPayload;
112
- disableClaw: PrivateClaw;
113
- enableClaw: PrivateClaw;
114
112
  ping: Scalars['Boolean'];
115
113
  regenerateClawKey: RegenerateKeyPayload;
116
114
  signIn: Player;
@@ -186,6 +184,7 @@ interface PublicClaw {
186
184
  __typename: 'PublicClaw';
187
185
  }
188
186
  interface Query {
187
+ allClaws: PublicClaw[];
189
188
  claw: PublicClaw;
190
189
  colonies: Colony[];
191
190
  colony: Colony;
@@ -374,16 +373,6 @@ interface MutationGenqlSelection {
374
373
  input: CreateClawInput;
375
374
  };
376
375
  });
377
- disableClaw?: (PrivateClawGenqlSelection & {
378
- __args: {
379
- clawId: Scalars['String'];
380
- };
381
- });
382
- enableClaw?: (PrivateClawGenqlSelection & {
383
- __args: {
384
- clawId: Scalars['String'];
385
- };
386
- });
387
376
  ping?: boolean | number;
388
377
  regenerateClawKey?: (RegenerateKeyPayloadGenqlSelection & {
389
378
  __args: {
@@ -481,6 +470,7 @@ interface PublicClawGenqlSelection {
481
470
  __scalar?: boolean | number;
482
471
  }
483
472
  interface QueryGenqlSelection {
473
+ allClaws?: PublicClawGenqlSelection;
484
474
  claw?: (PublicClawGenqlSelection & {
485
475
  __args: {
486
476
  id: Scalars['String'];
package/dist/index.d.ts CHANGED
@@ -109,8 +109,6 @@ interface MessageModel {
109
109
  }
110
110
  interface Mutation {
111
111
  createClaw: CreateClawPayload;
112
- disableClaw: PrivateClaw;
113
- enableClaw: PrivateClaw;
114
112
  ping: Scalars['Boolean'];
115
113
  regenerateClawKey: RegenerateKeyPayload;
116
114
  signIn: Player;
@@ -186,6 +184,7 @@ interface PublicClaw {
186
184
  __typename: 'PublicClaw';
187
185
  }
188
186
  interface Query {
187
+ allClaws: PublicClaw[];
189
188
  claw: PublicClaw;
190
189
  colonies: Colony[];
191
190
  colony: Colony;
@@ -374,16 +373,6 @@ interface MutationGenqlSelection {
374
373
  input: CreateClawInput;
375
374
  };
376
375
  });
377
- disableClaw?: (PrivateClawGenqlSelection & {
378
- __args: {
379
- clawId: Scalars['String'];
380
- };
381
- });
382
- enableClaw?: (PrivateClawGenqlSelection & {
383
- __args: {
384
- clawId: Scalars['String'];
385
- };
386
- });
387
376
  ping?: boolean | number;
388
377
  regenerateClawKey?: (RegenerateKeyPayloadGenqlSelection & {
389
378
  __args: {
@@ -481,6 +470,7 @@ interface PublicClawGenqlSelection {
481
470
  __scalar?: boolean | number;
482
471
  }
483
472
  interface QueryGenqlSelection {
473
+ allClaws?: PublicClawGenqlSelection;
484
474
  claw?: (PublicClawGenqlSelection & {
485
475
  __args: {
486
476
  id: Scalars['String'];
package/dist/index.js CHANGED
@@ -856,24 +856,6 @@ var types_default = {
856
856
  ]
857
857
  }
858
858
  ],
859
- "disableClaw": [
860
- 22,
861
- {
862
- "clawId": [
863
- 30,
864
- "String!"
865
- ]
866
- }
867
- ],
868
- "enableClaw": [
869
- 22,
870
- {
871
- "clawId": [
872
- 30,
873
- "String!"
874
- ]
875
- }
876
- ],
877
859
  "ping": [
878
860
  2
879
861
  ],
@@ -1101,6 +1083,9 @@ var types_default = {
1101
1083
  ]
1102
1084
  },
1103
1085
  "Query": {
1086
+ "allClaws": [
1087
+ 25
1088
+ ],
1104
1089
  "claw": [
1105
1090
  25,
1106
1091
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawconquest/client",
3
- "version": "1.22.0",
3
+ "version": "1.23.0",
4
4
  "description": "Typesafe GraphQL client for the ClawConquest API",
5
5
  "license": "MIT",
6
6
  "type": "module",