@clawconquest/client 1.24.0 → 1.25.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 +27 -0
- package/dist/index.d.cts +18 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +27 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -664,6 +664,9 @@ var types_default = {
|
|
|
664
664
|
"created_at": [
|
|
665
665
|
9
|
|
666
666
|
],
|
|
667
|
+
"died_at_tick": [
|
|
668
|
+
15
|
|
669
|
+
],
|
|
667
670
|
"energy": [
|
|
668
671
|
10
|
|
669
672
|
],
|
|
@@ -700,6 +703,9 @@ var types_default = {
|
|
|
700
703
|
"r": [
|
|
701
704
|
15
|
|
702
705
|
],
|
|
706
|
+
"revive_count": [
|
|
707
|
+
15
|
|
708
|
+
],
|
|
703
709
|
"sea_moss": [
|
|
704
710
|
10
|
|
705
711
|
],
|
|
@@ -940,6 +946,15 @@ var types_default = {
|
|
|
940
946
|
]
|
|
941
947
|
}
|
|
942
948
|
],
|
|
949
|
+
"reviveClaw": [
|
|
950
|
+
3,
|
|
951
|
+
{
|
|
952
|
+
"clawId": [
|
|
953
|
+
31,
|
|
954
|
+
"String!"
|
|
955
|
+
]
|
|
956
|
+
}
|
|
957
|
+
],
|
|
943
958
|
"signIn": [
|
|
944
959
|
21
|
|
945
960
|
],
|
|
@@ -1034,6 +1049,9 @@ var types_default = {
|
|
|
1034
1049
|
"created_at": [
|
|
1035
1050
|
9
|
|
1036
1051
|
],
|
|
1052
|
+
"died_at_tick": [
|
|
1053
|
+
15
|
|
1054
|
+
],
|
|
1037
1055
|
"energy": [
|
|
1038
1056
|
10
|
|
1039
1057
|
],
|
|
@@ -1070,6 +1088,9 @@ var types_default = {
|
|
|
1070
1088
|
"r": [
|
|
1071
1089
|
15
|
|
1072
1090
|
],
|
|
1091
|
+
"revive_count": [
|
|
1092
|
+
15
|
|
1093
|
+
],
|
|
1073
1094
|
"sea_moss": [
|
|
1074
1095
|
10
|
|
1075
1096
|
],
|
|
@@ -1123,6 +1144,9 @@ var types_default = {
|
|
|
1123
1144
|
"created_at": [
|
|
1124
1145
|
9
|
|
1125
1146
|
],
|
|
1147
|
+
"died_at_tick": [
|
|
1148
|
+
15
|
|
1149
|
+
],
|
|
1126
1150
|
"energy": [
|
|
1127
1151
|
10
|
|
1128
1152
|
],
|
|
@@ -1147,6 +1171,9 @@ var types_default = {
|
|
|
1147
1171
|
"r": [
|
|
1148
1172
|
15
|
|
1149
1173
|
],
|
|
1174
|
+
"revive_count": [
|
|
1175
|
+
15
|
|
1176
|
+
],
|
|
1150
1177
|
"species": [
|
|
1151
1178
|
30
|
|
1152
1179
|
],
|
package/dist/index.d.cts
CHANGED
|
@@ -22,6 +22,7 @@ interface Claw {
|
|
|
22
22
|
colony_id: (Scalars['String'] | null);
|
|
23
23
|
coral: Scalars['Float'];
|
|
24
24
|
created_at: Scalars['DateTime'];
|
|
25
|
+
died_at_tick: (Scalars['Int'] | null);
|
|
25
26
|
energy: Scalars['Float'];
|
|
26
27
|
equipment: Scalars['String'][];
|
|
27
28
|
id: Scalars['ID'];
|
|
@@ -34,6 +35,7 @@ interface Claw {
|
|
|
34
35
|
profile_emoji: (Scalars['String'] | null);
|
|
35
36
|
q: Scalars['Int'];
|
|
36
37
|
r: Scalars['Int'];
|
|
38
|
+
revive_count: Scalars['Int'];
|
|
37
39
|
sea_moss: Scalars['Float'];
|
|
38
40
|
species: Species;
|
|
39
41
|
webhook_url: (Scalars['String'] | null);
|
|
@@ -116,6 +118,7 @@ interface Mutation {
|
|
|
116
118
|
createClaw: CreateClawPayload;
|
|
117
119
|
ping: Scalars['Boolean'];
|
|
118
120
|
regenerateClawKey: RegenerateKeyPayload;
|
|
121
|
+
reviveClaw: Claw;
|
|
119
122
|
signIn: Player;
|
|
120
123
|
submitAction: ActionQueueEntry;
|
|
121
124
|
updateClaw: Claw;
|
|
@@ -144,6 +147,7 @@ interface PrivateClaw {
|
|
|
144
147
|
colony_id: (Scalars['String'] | null);
|
|
145
148
|
coral: Scalars['Float'];
|
|
146
149
|
created_at: Scalars['DateTime'];
|
|
150
|
+
died_at_tick: (Scalars['Int'] | null);
|
|
147
151
|
energy: Scalars['Float'];
|
|
148
152
|
equipment: Scalars['String'][];
|
|
149
153
|
id: Scalars['ID'];
|
|
@@ -156,6 +160,7 @@ interface PrivateClaw {
|
|
|
156
160
|
profile_emoji: (Scalars['String'] | null);
|
|
157
161
|
q: Scalars['Int'];
|
|
158
162
|
r: Scalars['Int'];
|
|
163
|
+
revive_count: Scalars['Int'];
|
|
159
164
|
sea_moss: Scalars['Float'];
|
|
160
165
|
species: Species;
|
|
161
166
|
webhook_url: (Scalars['String'] | null);
|
|
@@ -177,6 +182,7 @@ interface PublicClaw {
|
|
|
177
182
|
bio: (Scalars['String'] | null);
|
|
178
183
|
colony_id: (Scalars['String'] | null);
|
|
179
184
|
created_at: Scalars['DateTime'];
|
|
185
|
+
died_at_tick: (Scalars['Int'] | null);
|
|
180
186
|
energy: Scalars['Float'];
|
|
181
187
|
id: Scalars['ID'];
|
|
182
188
|
is_alive: Scalars['Boolean'];
|
|
@@ -185,6 +191,7 @@ interface PublicClaw {
|
|
|
185
191
|
profile_emoji: (Scalars['String'] | null);
|
|
186
192
|
q: Scalars['Int'];
|
|
187
193
|
r: Scalars['Int'];
|
|
194
|
+
revive_count: Scalars['Int'];
|
|
188
195
|
species: Species;
|
|
189
196
|
__typename: 'PublicClaw';
|
|
190
197
|
}
|
|
@@ -275,6 +282,7 @@ interface ClawGenqlSelection {
|
|
|
275
282
|
colony_id?: boolean | number;
|
|
276
283
|
coral?: boolean | number;
|
|
277
284
|
created_at?: boolean | number;
|
|
285
|
+
died_at_tick?: boolean | number;
|
|
278
286
|
energy?: boolean | number;
|
|
279
287
|
equipment?: boolean | number;
|
|
280
288
|
id?: boolean | number;
|
|
@@ -287,6 +295,7 @@ interface ClawGenqlSelection {
|
|
|
287
295
|
profile_emoji?: boolean | number;
|
|
288
296
|
q?: boolean | number;
|
|
289
297
|
r?: boolean | number;
|
|
298
|
+
revive_count?: boolean | number;
|
|
290
299
|
sea_moss?: boolean | number;
|
|
291
300
|
species?: boolean | number;
|
|
292
301
|
webhook_url?: boolean | number;
|
|
@@ -390,6 +399,11 @@ interface MutationGenqlSelection {
|
|
|
390
399
|
clawId: Scalars['String'];
|
|
391
400
|
};
|
|
392
401
|
});
|
|
402
|
+
reviveClaw?: (ClawGenqlSelection & {
|
|
403
|
+
__args: {
|
|
404
|
+
clawId: Scalars['String'];
|
|
405
|
+
};
|
|
406
|
+
});
|
|
393
407
|
signIn?: PlayerGenqlSelection;
|
|
394
408
|
submitAction?: (ActionQueueEntryGenqlSelection & {
|
|
395
409
|
__args: {
|
|
@@ -434,6 +448,7 @@ interface PrivateClawGenqlSelection {
|
|
|
434
448
|
colony_id?: boolean | number;
|
|
435
449
|
coral?: boolean | number;
|
|
436
450
|
created_at?: boolean | number;
|
|
451
|
+
died_at_tick?: boolean | number;
|
|
437
452
|
energy?: boolean | number;
|
|
438
453
|
equipment?: boolean | number;
|
|
439
454
|
id?: boolean | number;
|
|
@@ -446,6 +461,7 @@ interface PrivateClawGenqlSelection {
|
|
|
446
461
|
profile_emoji?: boolean | number;
|
|
447
462
|
q?: boolean | number;
|
|
448
463
|
r?: boolean | number;
|
|
464
|
+
revive_count?: boolean | number;
|
|
449
465
|
sea_moss?: boolean | number;
|
|
450
466
|
species?: boolean | number;
|
|
451
467
|
webhook_url?: boolean | number;
|
|
@@ -468,6 +484,7 @@ interface PublicClawGenqlSelection {
|
|
|
468
484
|
bio?: boolean | number;
|
|
469
485
|
colony_id?: boolean | number;
|
|
470
486
|
created_at?: boolean | number;
|
|
487
|
+
died_at_tick?: boolean | number;
|
|
471
488
|
energy?: boolean | number;
|
|
472
489
|
id?: boolean | number;
|
|
473
490
|
is_alive?: boolean | number;
|
|
@@ -476,6 +493,7 @@ interface PublicClawGenqlSelection {
|
|
|
476
493
|
profile_emoji?: boolean | number;
|
|
477
494
|
q?: boolean | number;
|
|
478
495
|
r?: boolean | number;
|
|
496
|
+
revive_count?: boolean | number;
|
|
479
497
|
species?: boolean | number;
|
|
480
498
|
__typename?: boolean | number;
|
|
481
499
|
__scalar?: boolean | number;
|
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ interface Claw {
|
|
|
22
22
|
colony_id: (Scalars['String'] | null);
|
|
23
23
|
coral: Scalars['Float'];
|
|
24
24
|
created_at: Scalars['DateTime'];
|
|
25
|
+
died_at_tick: (Scalars['Int'] | null);
|
|
25
26
|
energy: Scalars['Float'];
|
|
26
27
|
equipment: Scalars['String'][];
|
|
27
28
|
id: Scalars['ID'];
|
|
@@ -34,6 +35,7 @@ interface Claw {
|
|
|
34
35
|
profile_emoji: (Scalars['String'] | null);
|
|
35
36
|
q: Scalars['Int'];
|
|
36
37
|
r: Scalars['Int'];
|
|
38
|
+
revive_count: Scalars['Int'];
|
|
37
39
|
sea_moss: Scalars['Float'];
|
|
38
40
|
species: Species;
|
|
39
41
|
webhook_url: (Scalars['String'] | null);
|
|
@@ -116,6 +118,7 @@ interface Mutation {
|
|
|
116
118
|
createClaw: CreateClawPayload;
|
|
117
119
|
ping: Scalars['Boolean'];
|
|
118
120
|
regenerateClawKey: RegenerateKeyPayload;
|
|
121
|
+
reviveClaw: Claw;
|
|
119
122
|
signIn: Player;
|
|
120
123
|
submitAction: ActionQueueEntry;
|
|
121
124
|
updateClaw: Claw;
|
|
@@ -144,6 +147,7 @@ interface PrivateClaw {
|
|
|
144
147
|
colony_id: (Scalars['String'] | null);
|
|
145
148
|
coral: Scalars['Float'];
|
|
146
149
|
created_at: Scalars['DateTime'];
|
|
150
|
+
died_at_tick: (Scalars['Int'] | null);
|
|
147
151
|
energy: Scalars['Float'];
|
|
148
152
|
equipment: Scalars['String'][];
|
|
149
153
|
id: Scalars['ID'];
|
|
@@ -156,6 +160,7 @@ interface PrivateClaw {
|
|
|
156
160
|
profile_emoji: (Scalars['String'] | null);
|
|
157
161
|
q: Scalars['Int'];
|
|
158
162
|
r: Scalars['Int'];
|
|
163
|
+
revive_count: Scalars['Int'];
|
|
159
164
|
sea_moss: Scalars['Float'];
|
|
160
165
|
species: Species;
|
|
161
166
|
webhook_url: (Scalars['String'] | null);
|
|
@@ -177,6 +182,7 @@ interface PublicClaw {
|
|
|
177
182
|
bio: (Scalars['String'] | null);
|
|
178
183
|
colony_id: (Scalars['String'] | null);
|
|
179
184
|
created_at: Scalars['DateTime'];
|
|
185
|
+
died_at_tick: (Scalars['Int'] | null);
|
|
180
186
|
energy: Scalars['Float'];
|
|
181
187
|
id: Scalars['ID'];
|
|
182
188
|
is_alive: Scalars['Boolean'];
|
|
@@ -185,6 +191,7 @@ interface PublicClaw {
|
|
|
185
191
|
profile_emoji: (Scalars['String'] | null);
|
|
186
192
|
q: Scalars['Int'];
|
|
187
193
|
r: Scalars['Int'];
|
|
194
|
+
revive_count: Scalars['Int'];
|
|
188
195
|
species: Species;
|
|
189
196
|
__typename: 'PublicClaw';
|
|
190
197
|
}
|
|
@@ -275,6 +282,7 @@ interface ClawGenqlSelection {
|
|
|
275
282
|
colony_id?: boolean | number;
|
|
276
283
|
coral?: boolean | number;
|
|
277
284
|
created_at?: boolean | number;
|
|
285
|
+
died_at_tick?: boolean | number;
|
|
278
286
|
energy?: boolean | number;
|
|
279
287
|
equipment?: boolean | number;
|
|
280
288
|
id?: boolean | number;
|
|
@@ -287,6 +295,7 @@ interface ClawGenqlSelection {
|
|
|
287
295
|
profile_emoji?: boolean | number;
|
|
288
296
|
q?: boolean | number;
|
|
289
297
|
r?: boolean | number;
|
|
298
|
+
revive_count?: boolean | number;
|
|
290
299
|
sea_moss?: boolean | number;
|
|
291
300
|
species?: boolean | number;
|
|
292
301
|
webhook_url?: boolean | number;
|
|
@@ -390,6 +399,11 @@ interface MutationGenqlSelection {
|
|
|
390
399
|
clawId: Scalars['String'];
|
|
391
400
|
};
|
|
392
401
|
});
|
|
402
|
+
reviveClaw?: (ClawGenqlSelection & {
|
|
403
|
+
__args: {
|
|
404
|
+
clawId: Scalars['String'];
|
|
405
|
+
};
|
|
406
|
+
});
|
|
393
407
|
signIn?: PlayerGenqlSelection;
|
|
394
408
|
submitAction?: (ActionQueueEntryGenqlSelection & {
|
|
395
409
|
__args: {
|
|
@@ -434,6 +448,7 @@ interface PrivateClawGenqlSelection {
|
|
|
434
448
|
colony_id?: boolean | number;
|
|
435
449
|
coral?: boolean | number;
|
|
436
450
|
created_at?: boolean | number;
|
|
451
|
+
died_at_tick?: boolean | number;
|
|
437
452
|
energy?: boolean | number;
|
|
438
453
|
equipment?: boolean | number;
|
|
439
454
|
id?: boolean | number;
|
|
@@ -446,6 +461,7 @@ interface PrivateClawGenqlSelection {
|
|
|
446
461
|
profile_emoji?: boolean | number;
|
|
447
462
|
q?: boolean | number;
|
|
448
463
|
r?: boolean | number;
|
|
464
|
+
revive_count?: boolean | number;
|
|
449
465
|
sea_moss?: boolean | number;
|
|
450
466
|
species?: boolean | number;
|
|
451
467
|
webhook_url?: boolean | number;
|
|
@@ -468,6 +484,7 @@ interface PublicClawGenqlSelection {
|
|
|
468
484
|
bio?: boolean | number;
|
|
469
485
|
colony_id?: boolean | number;
|
|
470
486
|
created_at?: boolean | number;
|
|
487
|
+
died_at_tick?: boolean | number;
|
|
471
488
|
energy?: boolean | number;
|
|
472
489
|
id?: boolean | number;
|
|
473
490
|
is_alive?: boolean | number;
|
|
@@ -476,6 +493,7 @@ interface PublicClawGenqlSelection {
|
|
|
476
493
|
profile_emoji?: boolean | number;
|
|
477
494
|
q?: boolean | number;
|
|
478
495
|
r?: boolean | number;
|
|
496
|
+
revive_count?: boolean | number;
|
|
479
497
|
species?: boolean | number;
|
|
480
498
|
__typename?: boolean | number;
|
|
481
499
|
__scalar?: boolean | number;
|
package/dist/index.js
CHANGED
|
@@ -603,6 +603,9 @@ var types_default = {
|
|
|
603
603
|
"created_at": [
|
|
604
604
|
9
|
|
605
605
|
],
|
|
606
|
+
"died_at_tick": [
|
|
607
|
+
15
|
|
608
|
+
],
|
|
606
609
|
"energy": [
|
|
607
610
|
10
|
|
608
611
|
],
|
|
@@ -639,6 +642,9 @@ var types_default = {
|
|
|
639
642
|
"r": [
|
|
640
643
|
15
|
|
641
644
|
],
|
|
645
|
+
"revive_count": [
|
|
646
|
+
15
|
|
647
|
+
],
|
|
642
648
|
"sea_moss": [
|
|
643
649
|
10
|
|
644
650
|
],
|
|
@@ -879,6 +885,15 @@ var types_default = {
|
|
|
879
885
|
]
|
|
880
886
|
}
|
|
881
887
|
],
|
|
888
|
+
"reviveClaw": [
|
|
889
|
+
3,
|
|
890
|
+
{
|
|
891
|
+
"clawId": [
|
|
892
|
+
31,
|
|
893
|
+
"String!"
|
|
894
|
+
]
|
|
895
|
+
}
|
|
896
|
+
],
|
|
882
897
|
"signIn": [
|
|
883
898
|
21
|
|
884
899
|
],
|
|
@@ -973,6 +988,9 @@ var types_default = {
|
|
|
973
988
|
"created_at": [
|
|
974
989
|
9
|
|
975
990
|
],
|
|
991
|
+
"died_at_tick": [
|
|
992
|
+
15
|
|
993
|
+
],
|
|
976
994
|
"energy": [
|
|
977
995
|
10
|
|
978
996
|
],
|
|
@@ -1009,6 +1027,9 @@ var types_default = {
|
|
|
1009
1027
|
"r": [
|
|
1010
1028
|
15
|
|
1011
1029
|
],
|
|
1030
|
+
"revive_count": [
|
|
1031
|
+
15
|
|
1032
|
+
],
|
|
1012
1033
|
"sea_moss": [
|
|
1013
1034
|
10
|
|
1014
1035
|
],
|
|
@@ -1062,6 +1083,9 @@ var types_default = {
|
|
|
1062
1083
|
"created_at": [
|
|
1063
1084
|
9
|
|
1064
1085
|
],
|
|
1086
|
+
"died_at_tick": [
|
|
1087
|
+
15
|
|
1088
|
+
],
|
|
1065
1089
|
"energy": [
|
|
1066
1090
|
10
|
|
1067
1091
|
],
|
|
@@ -1086,6 +1110,9 @@ var types_default = {
|
|
|
1086
1110
|
"r": [
|
|
1087
1111
|
15
|
|
1088
1112
|
],
|
|
1113
|
+
"revive_count": [
|
|
1114
|
+
15
|
|
1115
|
+
],
|
|
1089
1116
|
"species": [
|
|
1090
1117
|
30
|
|
1091
1118
|
],
|