@wowok/agent-mcp 2.3.3 → 2.3.5
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.d.ts +20 -20
- package/dist/schema/call/allocation.d.ts +1 -1
- package/dist/schema/call/arbitration.d.ts +1 -1
- package/dist/schema/call/base.d.ts +1 -1
- package/dist/schema/call/contact.d.ts +1 -1
- package/dist/schema/call/demand.d.ts +1 -1
- package/dist/schema/call/guard.d.ts +3 -3
- package/dist/schema/call/machine.d.ts +2 -2
- package/dist/schema/call/order.d.ts +1 -1
- package/dist/schema/call/payment.d.ts +1 -1
- package/dist/schema/call/permission.d.ts +1 -1
- package/dist/schema/call/personal.d.ts +1 -1
- package/dist/schema/call/progress.d.ts +1 -1
- package/dist/schema/call/proof.d.ts +2 -2
- package/dist/schema/call/repository.d.ts +1 -1
- package/dist/schema/call/reward.d.ts +1 -1
- package/dist/schema/call/service.d.ts +1 -1
- package/dist/schema/call/treasury.d.ts +1 -1
- package/dist/schema/common/index.d.ts +3 -3
- package/dist/schema/common/index.js +0 -2
- package/dist/schema/local/index.d.ts +11 -11
- package/dist/schema/local/wip.d.ts +34 -34
- package/dist/schema/local/wip.js +2 -2
- package/dist/schema/messenger/index.d.ts +1 -1
- package/dist/schema/query/index.d.ts +22 -22
- package/dist/schemas/account_operation.schema.json +2 -4
- package/dist/schemas/guard2file.schema.json +1 -2
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/machineNode2file.schema.json +1 -2
- package/dist/schemas/messenger_operation.schema.json +1 -2
- package/dist/schemas/onchain_events.schema.json +1 -2
- package/dist/schemas/onchain_operations_allocation.schema.json +1 -2
- package/dist/schemas/onchain_operations_arbitration.schema.json +1 -2
- package/dist/schemas/onchain_operations_contact.schema.json +1 -2
- package/dist/schemas/onchain_operations_demand.schema.json +1 -2
- package/dist/schemas/onchain_operations_gen_passport.schema.json +2 -4
- package/dist/schemas/onchain_operations_guard.schema.json +1 -2
- package/dist/schemas/onchain_operations_machine.schema.json +1 -2
- package/dist/schemas/onchain_operations_order.schema.json +1 -2
- package/dist/schemas/onchain_operations_payment.schema.json +1 -2
- package/dist/schemas/onchain_operations_permission.schema.json +1 -2
- package/dist/schemas/onchain_operations_personal.schema.json +1 -2
- package/dist/schemas/onchain_operations_progress.schema.json +1 -2
- package/dist/schemas/onchain_operations_repository.schema.json +1 -2
- package/dist/schemas/onchain_operations_reward.schema.json +1 -2
- package/dist/schemas/onchain_operations_service.schema.json +1 -2
- package/dist/schemas/onchain_operations_treasury.schema.json +1 -2
- package/package.json +2 -2
|
@@ -10,7 +10,7 @@ export declare const WipConstraints: {
|
|
|
10
10
|
export declare const TextFormatSchema: z.ZodUnion<[z.ZodLiteral<"plain">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">]>;
|
|
11
11
|
export declare const ImageMimeTypeSchema: z.ZodUnion<[z.ZodLiteral<"image/png">, z.ZodLiteral<"image/jpeg">, z.ZodLiteral<"image/gif">, z.ZodLiteral<"image/webp">]>;
|
|
12
12
|
export declare const HashAlgorithmSchema: z.ZodLiteral<"sha256">;
|
|
13
|
-
export declare const SignatureAlgorithmSchema: z.ZodLiteral<"
|
|
13
|
+
export declare const SignatureAlgorithmSchema: z.ZodLiteral<"Falcon512">;
|
|
14
14
|
export declare const WipContentSchema: z.ZodObject<{
|
|
15
15
|
text: z.ZodString;
|
|
16
16
|
format: z.ZodUnion<[z.ZodLiteral<"plain">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">]>;
|
|
@@ -90,48 +90,48 @@ export declare const WipPayloadSchema: z.ZodObject<{
|
|
|
90
90
|
export declare const WipSignatureSchema: z.ZodObject<{
|
|
91
91
|
value: z.ZodString;
|
|
92
92
|
publicKey: z.ZodString;
|
|
93
|
-
algorithm: z.ZodLiteral<"
|
|
93
|
+
algorithm: z.ZodLiteral<"Falcon512">;
|
|
94
94
|
address: z.ZodOptional<z.ZodString>;
|
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
96
|
value: string;
|
|
97
97
|
publicKey: string;
|
|
98
|
-
algorithm: "
|
|
98
|
+
algorithm: "Falcon512";
|
|
99
99
|
address?: string | undefined;
|
|
100
100
|
}, {
|
|
101
101
|
value: string;
|
|
102
102
|
publicKey: string;
|
|
103
|
-
algorithm: "
|
|
103
|
+
algorithm: "Falcon512";
|
|
104
104
|
address?: string | undefined;
|
|
105
105
|
}>;
|
|
106
106
|
export declare const WipSignatureArraySchema: z.ZodUnion<[z.ZodObject<{
|
|
107
107
|
value: z.ZodString;
|
|
108
108
|
publicKey: z.ZodString;
|
|
109
|
-
algorithm: z.ZodLiteral<"
|
|
109
|
+
algorithm: z.ZodLiteral<"Falcon512">;
|
|
110
110
|
address: z.ZodOptional<z.ZodString>;
|
|
111
111
|
}, "strip", z.ZodTypeAny, {
|
|
112
112
|
value: string;
|
|
113
113
|
publicKey: string;
|
|
114
|
-
algorithm: "
|
|
114
|
+
algorithm: "Falcon512";
|
|
115
115
|
address?: string | undefined;
|
|
116
116
|
}, {
|
|
117
117
|
value: string;
|
|
118
118
|
publicKey: string;
|
|
119
|
-
algorithm: "
|
|
119
|
+
algorithm: "Falcon512";
|
|
120
120
|
address?: string | undefined;
|
|
121
121
|
}>, z.ZodArray<z.ZodObject<{
|
|
122
122
|
value: z.ZodString;
|
|
123
123
|
publicKey: z.ZodString;
|
|
124
|
-
algorithm: z.ZodLiteral<"
|
|
124
|
+
algorithm: z.ZodLiteral<"Falcon512">;
|
|
125
125
|
address: z.ZodOptional<z.ZodString>;
|
|
126
126
|
}, "strip", z.ZodTypeAny, {
|
|
127
127
|
value: string;
|
|
128
128
|
publicKey: string;
|
|
129
|
-
algorithm: "
|
|
129
|
+
algorithm: "Falcon512";
|
|
130
130
|
address?: string | undefined;
|
|
131
131
|
}, {
|
|
132
132
|
value: string;
|
|
133
133
|
publicKey: string;
|
|
134
|
-
algorithm: "
|
|
134
|
+
algorithm: "Falcon512";
|
|
135
135
|
address?: string | undefined;
|
|
136
136
|
}>, "many">]>;
|
|
137
137
|
export declare const WipMetaSchema: z.ZodObject<{
|
|
@@ -143,32 +143,32 @@ export declare const WipMetaSchema: z.ZodObject<{
|
|
|
143
143
|
signature: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
144
144
|
value: z.ZodString;
|
|
145
145
|
publicKey: z.ZodString;
|
|
146
|
-
algorithm: z.ZodLiteral<"
|
|
146
|
+
algorithm: z.ZodLiteral<"Falcon512">;
|
|
147
147
|
address: z.ZodOptional<z.ZodString>;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
149
|
value: string;
|
|
150
150
|
publicKey: string;
|
|
151
|
-
algorithm: "
|
|
151
|
+
algorithm: "Falcon512";
|
|
152
152
|
address?: string | undefined;
|
|
153
153
|
}, {
|
|
154
154
|
value: string;
|
|
155
155
|
publicKey: string;
|
|
156
|
-
algorithm: "
|
|
156
|
+
algorithm: "Falcon512";
|
|
157
157
|
address?: string | undefined;
|
|
158
158
|
}>, z.ZodArray<z.ZodObject<{
|
|
159
159
|
value: z.ZodString;
|
|
160
160
|
publicKey: z.ZodString;
|
|
161
|
-
algorithm: z.ZodLiteral<"
|
|
161
|
+
algorithm: z.ZodLiteral<"Falcon512">;
|
|
162
162
|
address: z.ZodOptional<z.ZodString>;
|
|
163
163
|
}, "strip", z.ZodTypeAny, {
|
|
164
164
|
value: string;
|
|
165
165
|
publicKey: string;
|
|
166
|
-
algorithm: "
|
|
166
|
+
algorithm: "Falcon512";
|
|
167
167
|
address?: string | undefined;
|
|
168
168
|
}, {
|
|
169
169
|
value: string;
|
|
170
170
|
publicKey: string;
|
|
171
|
-
algorithm: "
|
|
171
|
+
algorithm: "Falcon512";
|
|
172
172
|
address?: string | undefined;
|
|
173
173
|
}>, "many">]>>;
|
|
174
174
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -180,12 +180,12 @@ export declare const WipMetaSchema: z.ZodObject<{
|
|
|
180
180
|
signature?: {
|
|
181
181
|
value: string;
|
|
182
182
|
publicKey: string;
|
|
183
|
-
algorithm: "
|
|
183
|
+
algorithm: "Falcon512";
|
|
184
184
|
address?: string | undefined;
|
|
185
185
|
} | {
|
|
186
186
|
value: string;
|
|
187
187
|
publicKey: string;
|
|
188
|
-
algorithm: "
|
|
188
|
+
algorithm: "Falcon512";
|
|
189
189
|
address?: string | undefined;
|
|
190
190
|
}[] | undefined;
|
|
191
191
|
}, {
|
|
@@ -197,12 +197,12 @@ export declare const WipMetaSchema: z.ZodObject<{
|
|
|
197
197
|
signature?: {
|
|
198
198
|
value: string;
|
|
199
199
|
publicKey: string;
|
|
200
|
-
algorithm: "
|
|
200
|
+
algorithm: "Falcon512";
|
|
201
201
|
address?: string | undefined;
|
|
202
202
|
} | {
|
|
203
203
|
value: string;
|
|
204
204
|
publicKey: string;
|
|
205
|
-
algorithm: "
|
|
205
|
+
algorithm: "Falcon512";
|
|
206
206
|
address?: string | undefined;
|
|
207
207
|
}[] | undefined;
|
|
208
208
|
}>;
|
|
@@ -267,32 +267,32 @@ export declare const WipFileSchema: z.ZodObject<{
|
|
|
267
267
|
signature: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
268
268
|
value: z.ZodString;
|
|
269
269
|
publicKey: z.ZodString;
|
|
270
|
-
algorithm: z.ZodLiteral<"
|
|
270
|
+
algorithm: z.ZodLiteral<"Falcon512">;
|
|
271
271
|
address: z.ZodOptional<z.ZodString>;
|
|
272
272
|
}, "strip", z.ZodTypeAny, {
|
|
273
273
|
value: string;
|
|
274
274
|
publicKey: string;
|
|
275
|
-
algorithm: "
|
|
275
|
+
algorithm: "Falcon512";
|
|
276
276
|
address?: string | undefined;
|
|
277
277
|
}, {
|
|
278
278
|
value: string;
|
|
279
279
|
publicKey: string;
|
|
280
|
-
algorithm: "
|
|
280
|
+
algorithm: "Falcon512";
|
|
281
281
|
address?: string | undefined;
|
|
282
282
|
}>, z.ZodArray<z.ZodObject<{
|
|
283
283
|
value: z.ZodString;
|
|
284
284
|
publicKey: z.ZodString;
|
|
285
|
-
algorithm: z.ZodLiteral<"
|
|
285
|
+
algorithm: z.ZodLiteral<"Falcon512">;
|
|
286
286
|
address: z.ZodOptional<z.ZodString>;
|
|
287
287
|
}, "strip", z.ZodTypeAny, {
|
|
288
288
|
value: string;
|
|
289
289
|
publicKey: string;
|
|
290
|
-
algorithm: "
|
|
290
|
+
algorithm: "Falcon512";
|
|
291
291
|
address?: string | undefined;
|
|
292
292
|
}, {
|
|
293
293
|
value: string;
|
|
294
294
|
publicKey: string;
|
|
295
|
-
algorithm: "
|
|
295
|
+
algorithm: "Falcon512";
|
|
296
296
|
address?: string | undefined;
|
|
297
297
|
}>, "many">]>>;
|
|
298
298
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -304,12 +304,12 @@ export declare const WipFileSchema: z.ZodObject<{
|
|
|
304
304
|
signature?: {
|
|
305
305
|
value: string;
|
|
306
306
|
publicKey: string;
|
|
307
|
-
algorithm: "
|
|
307
|
+
algorithm: "Falcon512";
|
|
308
308
|
address?: string | undefined;
|
|
309
309
|
} | {
|
|
310
310
|
value: string;
|
|
311
311
|
publicKey: string;
|
|
312
|
-
algorithm: "
|
|
312
|
+
algorithm: "Falcon512";
|
|
313
313
|
address?: string | undefined;
|
|
314
314
|
}[] | undefined;
|
|
315
315
|
}, {
|
|
@@ -321,12 +321,12 @@ export declare const WipFileSchema: z.ZodObject<{
|
|
|
321
321
|
signature?: {
|
|
322
322
|
value: string;
|
|
323
323
|
publicKey: string;
|
|
324
|
-
algorithm: "
|
|
324
|
+
algorithm: "Falcon512";
|
|
325
325
|
address?: string | undefined;
|
|
326
326
|
} | {
|
|
327
327
|
value: string;
|
|
328
328
|
publicKey: string;
|
|
329
|
-
algorithm: "
|
|
329
|
+
algorithm: "Falcon512";
|
|
330
330
|
address?: string | undefined;
|
|
331
331
|
}[] | undefined;
|
|
332
332
|
}>;
|
|
@@ -353,12 +353,12 @@ export declare const WipFileSchema: z.ZodObject<{
|
|
|
353
353
|
signature?: {
|
|
354
354
|
value: string;
|
|
355
355
|
publicKey: string;
|
|
356
|
-
algorithm: "
|
|
356
|
+
algorithm: "Falcon512";
|
|
357
357
|
address?: string | undefined;
|
|
358
358
|
} | {
|
|
359
359
|
value: string;
|
|
360
360
|
publicKey: string;
|
|
361
|
-
algorithm: "
|
|
361
|
+
algorithm: "Falcon512";
|
|
362
362
|
address?: string | undefined;
|
|
363
363
|
}[] | undefined;
|
|
364
364
|
};
|
|
@@ -385,12 +385,12 @@ export declare const WipFileSchema: z.ZodObject<{
|
|
|
385
385
|
signature?: {
|
|
386
386
|
value: string;
|
|
387
387
|
publicKey: string;
|
|
388
|
-
algorithm: "
|
|
388
|
+
algorithm: "Falcon512";
|
|
389
389
|
address?: string | undefined;
|
|
390
390
|
} | {
|
|
391
391
|
value: string;
|
|
392
392
|
publicKey: string;
|
|
393
|
-
algorithm: "
|
|
393
|
+
algorithm: "Falcon512";
|
|
394
394
|
address?: string | undefined;
|
|
395
395
|
}[] | undefined;
|
|
396
396
|
};
|
package/dist/schema/local/wip.js
CHANGED
|
@@ -26,8 +26,8 @@ export const HashAlgorithmSchema = z
|
|
|
26
26
|
.literal("sha256")
|
|
27
27
|
.describe("Hash algorithm, fixed as sha256");
|
|
28
28
|
export const SignatureAlgorithmSchema = z
|
|
29
|
-
.literal("
|
|
30
|
-
.describe("Signature algorithm, fixed as
|
|
29
|
+
.literal("Falcon512")
|
|
30
|
+
.describe("Signature algorithm, fixed as Falcon512");
|
|
31
31
|
export const WipContentSchema = z
|
|
32
32
|
.object({
|
|
33
33
|
text: z.string().max(WipConstraints.maxTextLength).describe("Text content"),
|
|
@@ -2256,7 +2256,7 @@ export declare const MessengerOperationInputSchema: z.ZodDiscriminatedUnion<"ope
|
|
|
2256
2256
|
operation: z.ZodLiteral<"proof_message">;
|
|
2257
2257
|
account: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2258
2258
|
messageId: z.ZodString;
|
|
2259
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
2259
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
2260
2260
|
}, "strip", z.ZodTypeAny, {
|
|
2261
2261
|
operation: "proof_message";
|
|
2262
2262
|
messageId: string;
|
|
@@ -12740,7 +12740,7 @@ export declare const TableItem_TreasuryHistorySchema: z.ZodObject<{
|
|
|
12740
12740
|
}, z.ZodTypeAny, "passthrough">>;
|
|
12741
12741
|
export declare const ObjectsQuerySchema: z.ZodObject<{
|
|
12742
12742
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
12743
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
12743
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
12744
12744
|
} & {
|
|
12745
12745
|
objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
12746
12746
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -34706,7 +34706,7 @@ export declare const ObjectsAnswerSchema: z.ZodObject<{
|
|
|
34706
34706
|
}>;
|
|
34707
34707
|
export declare const PersonalQuerySchema: z.ZodObject<{
|
|
34708
34708
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
34709
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
34709
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
34710
34710
|
} & {
|
|
34711
34711
|
account: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
34712
34712
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -34720,7 +34720,7 @@ export declare const PersonalQuerySchema: z.ZodObject<{
|
|
|
34720
34720
|
}>;
|
|
34721
34721
|
export declare const TableQuerySchema: z.ZodObject<{
|
|
34722
34722
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
34723
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
34723
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
34724
34724
|
} & {
|
|
34725
34725
|
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
34726
34726
|
cursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -34833,7 +34833,7 @@ export declare const TableAnswerSchema: z.ZodObject<{
|
|
|
34833
34833
|
}>;
|
|
34834
34834
|
export declare const QueryTableItem_byAddressSchema: z.ZodObject<{
|
|
34835
34835
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
34836
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
34836
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
34837
34837
|
} & {
|
|
34838
34838
|
parent: z.ZodString;
|
|
34839
34839
|
address: z.ZodUnion<[z.ZodObject<{
|
|
@@ -34865,7 +34865,7 @@ export declare const QueryTableItem_byAddressSchema: z.ZodObject<{
|
|
|
34865
34865
|
}>;
|
|
34866
34866
|
export declare const QueryTableItem_byU64Schema: z.ZodObject<{
|
|
34867
34867
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
34868
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
34868
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
34869
34869
|
} & {
|
|
34870
34870
|
parent: z.ZodString;
|
|
34871
34871
|
u64: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -34882,7 +34882,7 @@ export declare const QueryTableItem_byU64Schema: z.ZodObject<{
|
|
|
34882
34882
|
}>;
|
|
34883
34883
|
export declare const QueryTableItem_byStringSchema: z.ZodObject<{
|
|
34884
34884
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
34885
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
34885
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
34886
34886
|
} & {
|
|
34887
34887
|
parent: z.ZodString;
|
|
34888
34888
|
key: z.ZodString;
|
|
@@ -34899,7 +34899,7 @@ export declare const QueryTableItem_byStringSchema: z.ZodObject<{
|
|
|
34899
34899
|
}>;
|
|
34900
34900
|
export declare const QueryTableItem_byNameAddressSchema: z.ZodObject<{
|
|
34901
34901
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
34902
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
34902
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
34903
34903
|
} & {
|
|
34904
34904
|
parent: z.ZodString;
|
|
34905
34905
|
name: z.ZodString;
|
|
@@ -34934,7 +34934,7 @@ export declare const QueryTableItem_byNameAddressSchema: z.ZodObject<{
|
|
|
34934
34934
|
}>;
|
|
34935
34935
|
export declare const QueryTableItem_Registrar_EntitySchema: z.ZodObject<{
|
|
34936
34936
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
34937
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
34937
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
34938
34938
|
} & {
|
|
34939
34939
|
address: z.ZodUnion<[z.ZodObject<{
|
|
34940
34940
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -35876,7 +35876,7 @@ export declare const EventAnswerSchema: z.ZodObject<{
|
|
|
35876
35876
|
}>;
|
|
35877
35877
|
export declare const EventQuerySchema: z.ZodObject<{
|
|
35878
35878
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
35879
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
35879
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
35880
35880
|
} & {
|
|
35881
35881
|
type: z.ZodUnion<[z.ZodLiteral<"ArbEvent">, z.ZodLiteral<"NewOrderEvent">, z.ZodLiteral<"ProgressEvent">, z.ZodLiteral<"DemandPresentEvent">, z.ZodLiteral<"DemandFeedbackEvent">, z.ZodLiteral<"NewEntityEvent">, z.ZodString]>;
|
|
35882
35882
|
cursor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -35927,7 +35927,7 @@ export declare const OnchainEventsInputSchema: z.ZodObject<{
|
|
|
35927
35927
|
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
35928
35928
|
order: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"ascending">, z.ZodLiteral<"descending">, z.ZodNull]>>;
|
|
35929
35929
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
35930
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
35930
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
35931
35931
|
}, "strip", z.ZodTypeAny, {
|
|
35932
35932
|
type: string;
|
|
35933
35933
|
no_cache?: boolean | undefined;
|
|
@@ -41498,7 +41498,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41498
41498
|
local_mark_first?: boolean | undefined;
|
|
41499
41499
|
}>, z.ZodNumber]>;
|
|
41500
41500
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41501
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41501
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41502
41502
|
}, "strip", z.ZodTypeAny, {
|
|
41503
41503
|
type: "RepositoryData";
|
|
41504
41504
|
name: string;
|
|
@@ -41533,7 +41533,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41533
41533
|
local_mark_first?: boolean | undefined;
|
|
41534
41534
|
}>, z.ZodString]>;
|
|
41535
41535
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41536
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41536
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41537
41537
|
}, "strip", z.ZodTypeAny, {
|
|
41538
41538
|
type: "PermissionPerm";
|
|
41539
41539
|
address: string | {
|
|
@@ -41566,7 +41566,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41566
41566
|
local_mark_first?: boolean | undefined;
|
|
41567
41567
|
}>;
|
|
41568
41568
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41569
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41569
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41570
41570
|
}, "strip", z.ZodTypeAny, {
|
|
41571
41571
|
type: "EntityRegistrar";
|
|
41572
41572
|
address: {
|
|
@@ -41598,7 +41598,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41598
41598
|
local_mark_first?: boolean | undefined;
|
|
41599
41599
|
}>, z.ZodString]>;
|
|
41600
41600
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41601
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41601
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41602
41602
|
}, "strip", z.ZodTypeAny, {
|
|
41603
41603
|
type: "EntityLinker";
|
|
41604
41604
|
address: string | {
|
|
@@ -41629,7 +41629,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41629
41629
|
local_mark_first?: boolean | undefined;
|
|
41630
41630
|
}>;
|
|
41631
41631
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41632
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41632
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41633
41633
|
}, "strip", z.ZodTypeAny, {
|
|
41634
41634
|
type: "RewardRecord";
|
|
41635
41635
|
address: {
|
|
@@ -41662,7 +41662,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41662
41662
|
local_mark_first?: boolean | undefined;
|
|
41663
41663
|
}>;
|
|
41664
41664
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41665
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41665
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41666
41666
|
}, "strip", z.ZodTypeAny, {
|
|
41667
41667
|
type: "DemandPresenter";
|
|
41668
41668
|
address: {
|
|
@@ -41695,7 +41695,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41695
41695
|
local_mark_first?: boolean | undefined;
|
|
41696
41696
|
}>;
|
|
41697
41697
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41698
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41698
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41699
41699
|
}, "strip", z.ZodTypeAny, {
|
|
41700
41700
|
type: "TreasuryRecord";
|
|
41701
41701
|
address: {
|
|
@@ -41719,7 +41719,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41719
41719
|
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
41720
41720
|
key: z.ZodString;
|
|
41721
41721
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41722
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41722
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41723
41723
|
}, "strip", z.ZodTypeAny, {
|
|
41724
41724
|
type: "MachineNode";
|
|
41725
41725
|
parent: string;
|
|
@@ -41737,7 +41737,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41737
41737
|
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
41738
41738
|
u64: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
41739
41739
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41740
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41740
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41741
41741
|
}, "strip", z.ZodTypeAny, {
|
|
41742
41742
|
type: "ProgressHistory";
|
|
41743
41743
|
u64: string | number;
|
|
@@ -41764,7 +41764,7 @@ export declare const QueryTableItemSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
41764
41764
|
local_mark_first?: boolean | undefined;
|
|
41765
41765
|
}>;
|
|
41766
41766
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
41767
|
-
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
41767
|
+
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>>;
|
|
41768
41768
|
}, "strip", z.ZodTypeAny, {
|
|
41769
41769
|
type: "AddressMark";
|
|
41770
41770
|
address: {
|
|
@@ -47325,7 +47325,7 @@ export declare const ProtocolInfoResultWrappedSchema: z.ZodDiscriminatedUnion<"i
|
|
|
47325
47325
|
info: "guard instructions";
|
|
47326
47326
|
}>, z.ZodObject<{
|
|
47327
47327
|
info: z.ZodLiteral<"current network">;
|
|
47328
|
-
result: z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
47328
|
+
result: z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>;
|
|
47329
47329
|
}, "strip", z.ZodTypeAny, {
|
|
47330
47330
|
result: import("@wowok/wowok").ENTRYPOINT;
|
|
47331
47331
|
info: "current network";
|
|
@@ -47482,7 +47482,7 @@ export declare const ProtocolInfoResultSchema: z.ZodObject<{
|
|
|
47482
47482
|
info: "guard instructions";
|
|
47483
47483
|
}>, z.ZodObject<{
|
|
47484
47484
|
info: z.ZodLiteral<"current network">;
|
|
47485
|
-
result: z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet
|
|
47485
|
+
result: z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet]>;
|
|
47486
47486
|
}, "strip", z.ZodTypeAny, {
|
|
47487
47487
|
result: import("@wowok/wowok").ENTRYPOINT;
|
|
47488
47488
|
info: "current network";
|
|
@@ -45,8 +45,7 @@
|
|
|
45
45
|
"type": "string",
|
|
46
46
|
"enum": [
|
|
47
47
|
"localnet",
|
|
48
|
-
"testnet"
|
|
49
|
-
"devnet"
|
|
48
|
+
"testnet"
|
|
50
49
|
],
|
|
51
50
|
"description": "Network entrypoint for Faucet: Specifies which network the operation occurs on"
|
|
52
51
|
}
|
|
@@ -145,8 +144,7 @@
|
|
|
145
144
|
"type": "string",
|
|
146
145
|
"enum": [
|
|
147
146
|
"localnet",
|
|
148
|
-
"testnet"
|
|
149
|
-
"devnet"
|
|
147
|
+
"testnet"
|
|
150
148
|
],
|
|
151
149
|
"description": "Network entrypoint: Specifies which network the operation occurs on"
|
|
152
150
|
}
|
package/dist/schemas/index.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"title": "WoWok MCP Schema Index",
|
|
4
4
|
"description": "Index of all available JSON schemas for WoWok MCP tools",
|
|
5
|
-
"generatedAt": "2026-06-
|
|
5
|
+
"generatedAt": "2026-06-25T02:35:00.212Z",
|
|
6
6
|
"tools": [
|
|
7
7
|
{
|
|
8
8
|
"name": "onchain_operations",
|
|
@@ -575,8 +575,7 @@
|
|
|
575
575
|
"type": "string",
|
|
576
576
|
"enum": [
|
|
577
577
|
"localnet",
|
|
578
|
-
"testnet"
|
|
579
|
-
"devnet"
|
|
578
|
+
"testnet"
|
|
580
579
|
],
|
|
581
580
|
"description": "Network entrypoint: Specifies which network the operation occurs on"
|
|
582
581
|
},
|
|
@@ -618,8 +617,7 @@
|
|
|
618
617
|
"type": "string",
|
|
619
618
|
"enum": [
|
|
620
619
|
"localnet",
|
|
621
|
-
"testnet"
|
|
622
|
-
"devnet"
|
|
620
|
+
"testnet"
|
|
623
621
|
],
|
|
624
622
|
"description": "Network entrypoint: Specifies which network the operation occurs on"
|
|
625
623
|
},
|