@wowok/agent-mcp 2.2.19 → 2.2.21
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/LICENSE +36 -0
- package/dist/index.d.ts +79 -25
- package/dist/schema/call/base.d.ts +830 -1214
- package/dist/schema/call/machine.d.ts +269 -83
- package/dist/schema/call/machine.js +2 -7
- package/dist/schema/common/index.d.ts +40 -40
- package/dist/schema/common/index.js +2 -2
- package/dist/schema/local/index.d.ts +1960 -3000
- package/dist/schema/local/index.js +10 -10
- package/dist/schema/query/index.d.ts +5840 -5840
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/onchain_operations_machine.schema.json +1 -40
- package/package.json +3 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
WoWok Agent SDK
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-2025 WoWok Team. All Rights Reserved.
|
|
4
|
+
|
|
5
|
+
================================================================================
|
|
6
|
+
IMPORTANT LICENSE INFORMATION
|
|
7
|
+
================================================================================
|
|
8
|
+
|
|
9
|
+
This software is part of the WoWok Blockchain Project.
|
|
10
|
+
|
|
11
|
+
WoWok uses technology from the Sui blockchain project (https://github.com/MystenLabs/sui)
|
|
12
|
+
developed by Mysten Labs, Inc. and licensed under the Apache License 2.0.
|
|
13
|
+
|
|
14
|
+
For complete license information, including:
|
|
15
|
+
- Apache License 2.0 (for Sui-derived code)
|
|
16
|
+
- WoWok Commercial License (for original WoWok code)
|
|
17
|
+
- Third-party component licenses
|
|
18
|
+
- Attribution notices
|
|
19
|
+
|
|
20
|
+
Please visit:
|
|
21
|
+
https://github.com/wowok-ai/licence
|
|
22
|
+
|
|
23
|
+
Or see the local licence repository at:
|
|
24
|
+
d:\wowok\licence
|
|
25
|
+
|
|
26
|
+
================================================================================
|
|
27
|
+
SUMMARY
|
|
28
|
+
================================================================================
|
|
29
|
+
|
|
30
|
+
- Sui-derived code: Apache License 2.0
|
|
31
|
+
Copyright (c) Mysten Labs, Inc.
|
|
32
|
+
|
|
33
|
+
- WoWok original code: WoWok Commercial License
|
|
34
|
+
Copyright (c) WoWok Team
|
|
35
|
+
|
|
36
|
+
For licensing inquiries, please contact: build@wowok.net
|
package/dist/index.d.ts
CHANGED
|
@@ -2420,28 +2420,50 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2420
2420
|
prior_node_name: z.ZodEffects<z.ZodString, string, string>;
|
|
2421
2421
|
node_name: z.ZodEffects<z.ZodString, string, string>;
|
|
2422
2422
|
forward: z.ZodArray<z.ZodObject<{
|
|
2423
|
-
name: z.
|
|
2424
|
-
namedOperator: z.ZodOptional<z.
|
|
2425
|
-
permissionIndex: z.ZodOptional<z.
|
|
2423
|
+
name: z.ZodString;
|
|
2424
|
+
namedOperator: z.ZodOptional<z.ZodString>;
|
|
2425
|
+
permissionIndex: z.ZodOptional<z.ZodEffects<z.ZodNumber, number, number>>;
|
|
2426
2426
|
weight: z.ZodNumber;
|
|
2427
|
+
guard: z.ZodOptional<z.ZodObject<{
|
|
2428
|
+
guard: z.ZodString;
|
|
2429
|
+
retained_submission: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
2430
|
+
}, "strict", z.ZodTypeAny, {
|
|
2431
|
+
guard: string;
|
|
2432
|
+
retained_submission?: number[] | undefined;
|
|
2433
|
+
}, {
|
|
2434
|
+
guard: string;
|
|
2435
|
+
retained_submission?: number[] | undefined;
|
|
2436
|
+
}>>;
|
|
2427
2437
|
}, "strict", z.ZodTypeAny, {
|
|
2428
2438
|
name: string;
|
|
2429
2439
|
weight: number;
|
|
2430
|
-
|
|
2431
|
-
|
|
2440
|
+
guard?: {
|
|
2441
|
+
guard: string;
|
|
2442
|
+
retained_submission?: number[] | undefined;
|
|
2443
|
+
} | undefined;
|
|
2444
|
+
namedOperator?: string | undefined;
|
|
2445
|
+
permissionIndex?: number | undefined;
|
|
2432
2446
|
}, {
|
|
2433
2447
|
name: string;
|
|
2434
2448
|
weight: number;
|
|
2435
|
-
|
|
2436
|
-
|
|
2449
|
+
guard?: {
|
|
2450
|
+
guard: string;
|
|
2451
|
+
retained_submission?: number[] | undefined;
|
|
2452
|
+
} | undefined;
|
|
2453
|
+
namedOperator?: string | undefined;
|
|
2454
|
+
permissionIndex?: number | undefined;
|
|
2437
2455
|
}>, "many">;
|
|
2438
2456
|
threshold: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
2439
2457
|
}, "strict", z.ZodTypeAny, {
|
|
2440
2458
|
forward: {
|
|
2441
2459
|
name: string;
|
|
2442
2460
|
weight: number;
|
|
2443
|
-
|
|
2444
|
-
|
|
2461
|
+
guard?: {
|
|
2462
|
+
guard: string;
|
|
2463
|
+
retained_submission?: number[] | undefined;
|
|
2464
|
+
} | undefined;
|
|
2465
|
+
namedOperator?: string | undefined;
|
|
2466
|
+
permissionIndex?: number | undefined;
|
|
2445
2467
|
}[];
|
|
2446
2468
|
prior_node_name: string;
|
|
2447
2469
|
node_name: string;
|
|
@@ -2450,8 +2472,12 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2450
2472
|
forward: {
|
|
2451
2473
|
name: string;
|
|
2452
2474
|
weight: number;
|
|
2453
|
-
|
|
2454
|
-
|
|
2475
|
+
guard?: {
|
|
2476
|
+
guard: string;
|
|
2477
|
+
retained_submission?: number[] | undefined;
|
|
2478
|
+
} | undefined;
|
|
2479
|
+
namedOperator?: string | undefined;
|
|
2480
|
+
permissionIndex?: number | undefined;
|
|
2455
2481
|
}[];
|
|
2456
2482
|
prior_node_name: string;
|
|
2457
2483
|
node_name: string;
|
|
@@ -2462,8 +2488,12 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2462
2488
|
forward: {
|
|
2463
2489
|
name: string;
|
|
2464
2490
|
weight: number;
|
|
2465
|
-
|
|
2466
|
-
|
|
2491
|
+
guard?: {
|
|
2492
|
+
guard: string;
|
|
2493
|
+
retained_submission?: number[] | undefined;
|
|
2494
|
+
} | undefined;
|
|
2495
|
+
namedOperator?: string | undefined;
|
|
2496
|
+
permissionIndex?: number | undefined;
|
|
2467
2497
|
}[];
|
|
2468
2498
|
prior_node_name: string;
|
|
2469
2499
|
node_name: string;
|
|
@@ -2475,8 +2505,12 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2475
2505
|
forward: {
|
|
2476
2506
|
name: string;
|
|
2477
2507
|
weight: number;
|
|
2478
|
-
|
|
2479
|
-
|
|
2508
|
+
guard?: {
|
|
2509
|
+
guard: string;
|
|
2510
|
+
retained_submission?: number[] | undefined;
|
|
2511
|
+
} | undefined;
|
|
2512
|
+
namedOperator?: string | undefined;
|
|
2513
|
+
permissionIndex?: number | undefined;
|
|
2480
2514
|
}[];
|
|
2481
2515
|
prior_node_name: string;
|
|
2482
2516
|
node_name: string;
|
|
@@ -2660,8 +2694,12 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2660
2694
|
forward: {
|
|
2661
2695
|
name: string;
|
|
2662
2696
|
weight: number;
|
|
2663
|
-
|
|
2664
|
-
|
|
2697
|
+
guard?: {
|
|
2698
|
+
guard: string;
|
|
2699
|
+
retained_submission?: number[] | undefined;
|
|
2700
|
+
} | undefined;
|
|
2701
|
+
namedOperator?: string | undefined;
|
|
2702
|
+
permissionIndex?: number | undefined;
|
|
2665
2703
|
}[];
|
|
2666
2704
|
prior_node_name: string;
|
|
2667
2705
|
node_name: string;
|
|
@@ -2811,8 +2849,12 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2811
2849
|
forward: {
|
|
2812
2850
|
name: string;
|
|
2813
2851
|
weight: number;
|
|
2814
|
-
|
|
2815
|
-
|
|
2852
|
+
guard?: {
|
|
2853
|
+
guard: string;
|
|
2854
|
+
retained_submission?: number[] | undefined;
|
|
2855
|
+
} | undefined;
|
|
2856
|
+
namedOperator?: string | undefined;
|
|
2857
|
+
permissionIndex?: number | undefined;
|
|
2816
2858
|
}[];
|
|
2817
2859
|
prior_node_name: string;
|
|
2818
2860
|
node_name: string;
|
|
@@ -3163,8 +3205,12 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
3163
3205
|
forward: {
|
|
3164
3206
|
name: string;
|
|
3165
3207
|
weight: number;
|
|
3166
|
-
|
|
3167
|
-
|
|
3208
|
+
guard?: {
|
|
3209
|
+
guard: string;
|
|
3210
|
+
retained_submission?: number[] | undefined;
|
|
3211
|
+
} | undefined;
|
|
3212
|
+
namedOperator?: string | undefined;
|
|
3213
|
+
permissionIndex?: number | undefined;
|
|
3168
3214
|
}[];
|
|
3169
3215
|
prior_node_name: string;
|
|
3170
3216
|
node_name: string;
|
|
@@ -3351,8 +3397,12 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
3351
3397
|
forward: {
|
|
3352
3398
|
name: string;
|
|
3353
3399
|
weight: number;
|
|
3354
|
-
|
|
3355
|
-
|
|
3400
|
+
guard?: {
|
|
3401
|
+
guard: string;
|
|
3402
|
+
retained_submission?: number[] | undefined;
|
|
3403
|
+
} | undefined;
|
|
3404
|
+
namedOperator?: string | undefined;
|
|
3405
|
+
permissionIndex?: number | undefined;
|
|
3356
3406
|
}[];
|
|
3357
3407
|
prior_node_name: string;
|
|
3358
3408
|
node_name: string;
|
|
@@ -13761,8 +13811,12 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
13761
13811
|
forward: {
|
|
13762
13812
|
name: string;
|
|
13763
13813
|
weight: number;
|
|
13764
|
-
|
|
13765
|
-
|
|
13814
|
+
guard?: {
|
|
13815
|
+
guard: string;
|
|
13816
|
+
retained_submission?: number[] | undefined;
|
|
13817
|
+
} | undefined;
|
|
13818
|
+
namedOperator?: string | undefined;
|
|
13819
|
+
permissionIndex?: number | undefined;
|
|
13766
13820
|
}[];
|
|
13767
13821
|
prior_node_name: string;
|
|
13768
13822
|
node_name: string;
|