@clawconquest/client 1.21.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 +9 -18
- package/dist/index.d.cts +4 -12
- package/dist/index.d.ts +4 -12
- package/dist/index.js +9 -18
- package/package.json +1 -1
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
|
{
|
|
@@ -1228,6 +1213,9 @@ var types_default = {
|
|
|
1228
1213
|
"messages": [
|
|
1229
1214
|
18,
|
|
1230
1215
|
{
|
|
1216
|
+
"clawId": [
|
|
1217
|
+
30
|
|
1218
|
+
],
|
|
1231
1219
|
"limit": [
|
|
1232
1220
|
14,
|
|
1233
1221
|
"Int!"
|
|
@@ -1273,6 +1261,9 @@ var types_default = {
|
|
|
1273
1261
|
"sentMessages": [
|
|
1274
1262
|
18,
|
|
1275
1263
|
{
|
|
1264
|
+
"clawId": [
|
|
1265
|
+
30
|
|
1266
|
+
],
|
|
1276
1267
|
"limit": [
|
|
1277
1268
|
14,
|
|
1278
1269
|
"Int!"
|
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'];
|
|
@@ -512,6 +502,7 @@ interface QueryGenqlSelection {
|
|
|
512
502
|
me?: PlayerProfileGenqlSelection;
|
|
513
503
|
messages?: (MessageModelGenqlSelection & {
|
|
514
504
|
__args?: {
|
|
505
|
+
clawId?: (Scalars['String'] | null);
|
|
515
506
|
limit?: Scalars['Int'];
|
|
516
507
|
offset?: Scalars['Int'];
|
|
517
508
|
};
|
|
@@ -535,6 +526,7 @@ interface QueryGenqlSelection {
|
|
|
535
526
|
});
|
|
536
527
|
sentMessages?: (MessageModelGenqlSelection & {
|
|
537
528
|
__args?: {
|
|
529
|
+
clawId?: (Scalars['String'] | null);
|
|
538
530
|
limit?: Scalars['Int'];
|
|
539
531
|
offset?: Scalars['Int'];
|
|
540
532
|
};
|
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'];
|
|
@@ -512,6 +502,7 @@ interface QueryGenqlSelection {
|
|
|
512
502
|
me?: PlayerProfileGenqlSelection;
|
|
513
503
|
messages?: (MessageModelGenqlSelection & {
|
|
514
504
|
__args?: {
|
|
505
|
+
clawId?: (Scalars['String'] | null);
|
|
515
506
|
limit?: Scalars['Int'];
|
|
516
507
|
offset?: Scalars['Int'];
|
|
517
508
|
};
|
|
@@ -535,6 +526,7 @@ interface QueryGenqlSelection {
|
|
|
535
526
|
});
|
|
536
527
|
sentMessages?: (MessageModelGenqlSelection & {
|
|
537
528
|
__args?: {
|
|
529
|
+
clawId?: (Scalars['String'] | null);
|
|
538
530
|
limit?: Scalars['Int'];
|
|
539
531
|
offset?: Scalars['Int'];
|
|
540
532
|
};
|
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
|
{
|
|
@@ -1168,6 +1153,9 @@ var types_default = {
|
|
|
1168
1153
|
"messages": [
|
|
1169
1154
|
18,
|
|
1170
1155
|
{
|
|
1156
|
+
"clawId": [
|
|
1157
|
+
30
|
|
1158
|
+
],
|
|
1171
1159
|
"limit": [
|
|
1172
1160
|
14,
|
|
1173
1161
|
"Int!"
|
|
@@ -1213,6 +1201,9 @@ var types_default = {
|
|
|
1213
1201
|
"sentMessages": [
|
|
1214
1202
|
18,
|
|
1215
1203
|
{
|
|
1204
|
+
"clawId": [
|
|
1205
|
+
30
|
|
1206
|
+
],
|
|
1216
1207
|
"limit": [
|
|
1217
1208
|
14,
|
|
1218
1209
|
"Int!"
|