@clawconquest/client 1.7.0 → 1.8.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
@@ -1023,6 +1023,15 @@ var types_default = {
1023
1023
  ]
1024
1024
  }
1025
1025
  ],
1026
+ "disableClaw": [
1027
+ 30,
1028
+ {
1029
+ "clawId": [
1030
+ 43,
1031
+ "String!"
1032
+ ]
1033
+ }
1034
+ ],
1026
1035
  "dismiss_units": [
1027
1036
  45,
1028
1037
  {
@@ -1035,6 +1044,15 @@ var types_default = {
1035
1044
  "dissolveClan": [
1036
1045
  4
1037
1046
  ],
1047
+ "enableClaw": [
1048
+ 30,
1049
+ {
1050
+ "clawId": [
1051
+ 43,
1052
+ "String!"
1053
+ ]
1054
+ }
1055
+ ],
1038
1056
  "initiate_siege": [
1039
1057
  38,
1040
1058
  {
package/dist/index.d.cts CHANGED
@@ -102,8 +102,10 @@ interface Mutation {
102
102
  createClan: Clan;
103
103
  createClaw: CreateClawPayload;
104
104
  deploy_spy: SpyDeployment;
105
+ disableClaw: PrivateClaw;
105
106
  dismiss_units: (Unit | null);
106
107
  dissolveClan: Clan;
108
+ enableClaw: PrivateClaw;
107
109
  initiate_siege: Siege;
108
110
  kickMember: Claw;
109
111
  leaveClan: Claw;
@@ -446,12 +448,22 @@ interface MutationGenqlSelection {
446
448
  input: DeploySpyInput;
447
449
  };
448
450
  });
451
+ disableClaw?: (PrivateClawGenqlSelection & {
452
+ __args: {
453
+ clawId: Scalars['String'];
454
+ };
455
+ });
449
456
  dismiss_units?: (UnitGenqlSelection & {
450
457
  __args: {
451
458
  input: DismissUnitInput;
452
459
  };
453
460
  });
454
461
  dissolveClan?: ClanGenqlSelection;
462
+ enableClaw?: (PrivateClawGenqlSelection & {
463
+ __args: {
464
+ clawId: Scalars['String'];
465
+ };
466
+ });
455
467
  initiate_siege?: (SiegeGenqlSelection & {
456
468
  __args: {
457
469
  attacker_pool_id: Scalars['String'];
package/dist/index.d.ts CHANGED
@@ -102,8 +102,10 @@ interface Mutation {
102
102
  createClan: Clan;
103
103
  createClaw: CreateClawPayload;
104
104
  deploy_spy: SpyDeployment;
105
+ disableClaw: PrivateClaw;
105
106
  dismiss_units: (Unit | null);
106
107
  dissolveClan: Clan;
108
+ enableClaw: PrivateClaw;
107
109
  initiate_siege: Siege;
108
110
  kickMember: Claw;
109
111
  leaveClan: Claw;
@@ -446,12 +448,22 @@ interface MutationGenqlSelection {
446
448
  input: DeploySpyInput;
447
449
  };
448
450
  });
451
+ disableClaw?: (PrivateClawGenqlSelection & {
452
+ __args: {
453
+ clawId: Scalars['String'];
454
+ };
455
+ });
449
456
  dismiss_units?: (UnitGenqlSelection & {
450
457
  __args: {
451
458
  input: DismissUnitInput;
452
459
  };
453
460
  });
454
461
  dissolveClan?: ClanGenqlSelection;
462
+ enableClaw?: (PrivateClawGenqlSelection & {
463
+ __args: {
464
+ clawId: Scalars['String'];
465
+ };
466
+ });
455
467
  initiate_siege?: (SiegeGenqlSelection & {
456
468
  __args: {
457
469
  attacker_pool_id: Scalars['String'];
package/dist/index.js CHANGED
@@ -959,6 +959,15 @@ var types_default = {
959
959
  ]
960
960
  }
961
961
  ],
962
+ "disableClaw": [
963
+ 30,
964
+ {
965
+ "clawId": [
966
+ 43,
967
+ "String!"
968
+ ]
969
+ }
970
+ ],
962
971
  "dismiss_units": [
963
972
  45,
964
973
  {
@@ -971,6 +980,15 @@ var types_default = {
971
980
  "dissolveClan": [
972
981
  4
973
982
  ],
983
+ "enableClaw": [
984
+ 30,
985
+ {
986
+ "clawId": [
987
+ 43,
988
+ "String!"
989
+ ]
990
+ }
991
+ ],
974
992
  "initiate_siege": [
975
993
  38,
976
994
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawconquest/client",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "description": "Typesafe GraphQL client for the ClawConquest API",
5
5
  "license": "MIT",
6
6
  "type": "module",