@wowok/agent-mcp 2.3.12 → 2.3.14
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/harness/checkpoint.d.ts +8 -0
- package/dist/harness/checkpoint.js +129 -0
- package/dist/harness/index.d.ts +33 -0
- package/dist/harness/index.js +75 -0
- package/dist/harness/plan.d.ts +18 -0
- package/dist/harness/plan.js +252 -0
- package/dist/harness/recover.d.ts +17 -0
- package/dist/harness/recover.js +139 -0
- package/dist/harness/types.d.ts +137 -0
- package/dist/harness/types.js +1 -0
- package/dist/harness/verify.d.ts +42 -0
- package/dist/harness/verify.js +237 -0
- package/dist/index.js +134 -52
- package/dist/loop-engineering/aggregate.d.ts +50 -0
- package/dist/loop-engineering/aggregate.js +132 -0
- package/dist/loop-engineering/diagnose.d.ts +21 -0
- package/dist/loop-engineering/diagnose.js +179 -0
- package/dist/loop-engineering/improve.d.ts +26 -0
- package/dist/loop-engineering/improve.js +178 -0
- package/dist/loop-engineering/index.d.ts +4 -0
- package/dist/loop-engineering/index.js +4 -0
- package/dist/loop-engineering/pipeline.d.ts +17 -0
- package/dist/loop-engineering/pipeline.js +56 -0
- package/dist/mode-market/index.d.ts +3 -0
- package/dist/mode-market/index.js +3 -0
- package/dist/mode-market/registry.d.ts +53 -0
- package/dist/mode-market/registry.js +124 -0
- package/dist/mode-market/review.d.ts +27 -0
- package/dist/mode-market/review.js +214 -0
- package/dist/mode-market/submission.d.ts +25 -0
- package/dist/mode-market/submission.js +85 -0
- package/dist/schema/call/allocation.d.ts +40 -40
- package/dist/schema/call/arbitration.d.ts +90 -90
- package/dist/schema/call/base.d.ts +1054 -0
- package/dist/schema/call/base.js +100 -22
- package/dist/schema/call/bridge-handler.js +36 -18
- package/dist/schema/call/bridge.d.ts +115 -115
- package/dist/schema/call/handler.d.ts +2 -1
- package/dist/schema/call/handler.js +94 -3
- package/dist/schema/call/index.d.ts +1 -0
- package/dist/schema/call/index.js +1 -0
- package/dist/schema/call/machine.d.ts +144 -144
- package/dist/schema/call/order.d.ts +12 -12
- package/dist/schema/call/progress.d.ts +6 -6
- package/dist/schema/call/proof.js +7 -6
- package/dist/schema/call/reward.d.ts +6 -6
- package/dist/schema/call/semantic.d.ts +23 -0
- package/dist/schema/call/semantic.js +764 -0
- package/dist/schema/call/service.d.ts +142 -142
- package/dist/schema/call/treasury.d.ts +204 -204
- package/dist/schema/local/index.d.ts +113 -2
- package/dist/schema/local/index.js +11 -1
- package/dist/schema/messenger/index.d.ts +435 -95
- package/dist/schema/messenger/index.js +20 -8
- package/dist/schema/operations.d.ts +988 -495
- package/dist/schema/operations.js +14 -3
- package/dist/schema/query/index.d.ts +346 -342
- package/dist/schema/query/index.js +4 -1
- package/dist/schemas/account_operation.output.json +3 -0
- package/dist/schemas/account_operation.schema.json +1 -1
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/local_info_operation.output.json +3 -0
- package/dist/schemas/local_mark_operation.output.json +3 -0
- package/dist/schemas/messenger_operation.output.json +21 -0
- package/dist/schemas/messenger_operation.schema.json +43 -8
- package/dist/schemas/onchain_events.output.json +3 -0
- package/dist/schemas/onchain_operations.output.json +464 -21
- package/dist/schemas/onchain_operations.schema.json +21 -17
- package/dist/schemas/onchain_operations_allocation.schema.json +11 -9
- package/dist/schemas/onchain_operations_arbitration.schema.json +11 -9
- package/dist/schemas/onchain_operations_contact.schema.json +11 -9
- package/dist/schemas/onchain_operations_demand.schema.json +11 -9
- package/dist/schemas/onchain_operations_gen_passport.schema.json +21 -17
- package/dist/schemas/onchain_operations_guard.schema.json +11 -9
- package/dist/schemas/onchain_operations_machine.schema.json +11 -9
- package/dist/schemas/onchain_operations_order.schema.json +11 -9
- package/dist/schemas/onchain_operations_payment.schema.json +11 -9
- package/dist/schemas/onchain_operations_permission.schema.json +11 -9
- package/dist/schemas/onchain_operations_personal.schema.json +11 -9
- package/dist/schemas/onchain_operations_progress.schema.json +11 -9
- package/dist/schemas/onchain_operations_repository.schema.json +11 -9
- package/dist/schemas/onchain_operations_reward.schema.json +11 -9
- package/dist/schemas/onchain_operations_service.schema.json +11 -9
- package/dist/schemas/onchain_operations_treasury.schema.json +11 -9
- package/dist/schemas/onchain_table_data.output.json +3 -0
- package/dist/schemas/query_toolkit.schema.json +5 -1
- package/dist/telemetry/index.d.ts +19 -0
- package/dist/telemetry/index.js +112 -0
- package/dist/telemetry/redact.d.ts +2 -0
- package/dist/telemetry/redact.js +23 -0
- package/dist/telemetry/storage.d.ts +8 -0
- package/dist/telemetry/storage.js +80 -0
- package/package.json +6 -3
|
@@ -141,13 +141,6 @@ export declare const ProgressNewSchema: z.ZodObject<{
|
|
|
141
141
|
onChain?: boolean | undefined;
|
|
142
142
|
}>>;
|
|
143
143
|
}, "strict", z.ZodTypeAny, {
|
|
144
|
-
task?: string | null | undefined;
|
|
145
|
-
namedNew?: {
|
|
146
|
-
name?: string | undefined;
|
|
147
|
-
replaceExistName?: boolean | undefined;
|
|
148
|
-
tags?: string[] | undefined;
|
|
149
|
-
onChain?: boolean | undefined;
|
|
150
|
-
} | undefined;
|
|
151
144
|
repository?: {
|
|
152
145
|
op: "set" | "add";
|
|
153
146
|
objects: string[];
|
|
@@ -157,6 +150,13 @@ export declare const ProgressNewSchema: z.ZodObject<{
|
|
|
157
150
|
} | {
|
|
158
151
|
op: "clear";
|
|
159
152
|
} | undefined;
|
|
153
|
+
task?: string | null | undefined;
|
|
154
|
+
namedNew?: {
|
|
155
|
+
name?: string | undefined;
|
|
156
|
+
replaceExistName?: boolean | undefined;
|
|
157
|
+
tags?: string[] | undefined;
|
|
158
|
+
onChain?: boolean | undefined;
|
|
159
|
+
} | undefined;
|
|
160
160
|
progress_namedOperator?: {
|
|
161
161
|
name: string;
|
|
162
162
|
op: "set" | "add" | "remove";
|
|
@@ -169,13 +169,6 @@ export declare const ProgressNewSchema: z.ZodObject<{
|
|
|
169
169
|
};
|
|
170
170
|
} | undefined;
|
|
171
171
|
}, {
|
|
172
|
-
task?: string | null | undefined;
|
|
173
|
-
namedNew?: {
|
|
174
|
-
name?: string | undefined;
|
|
175
|
-
replaceExistName?: boolean | undefined;
|
|
176
|
-
tags?: string[] | undefined;
|
|
177
|
-
onChain?: boolean | undefined;
|
|
178
|
-
} | undefined;
|
|
179
172
|
repository?: {
|
|
180
173
|
op: "set" | "add";
|
|
181
174
|
objects: string[];
|
|
@@ -185,6 +178,13 @@ export declare const ProgressNewSchema: z.ZodObject<{
|
|
|
185
178
|
} | {
|
|
186
179
|
op: "clear";
|
|
187
180
|
} | undefined;
|
|
181
|
+
task?: string | null | undefined;
|
|
182
|
+
namedNew?: {
|
|
183
|
+
name?: string | undefined;
|
|
184
|
+
replaceExistName?: boolean | undefined;
|
|
185
|
+
tags?: string[] | undefined;
|
|
186
|
+
onChain?: boolean | undefined;
|
|
187
|
+
} | undefined;
|
|
188
188
|
progress_namedOperator?: {
|
|
189
189
|
name: string;
|
|
190
190
|
op: "set" | "add" | "remove";
|
|
@@ -1405,13 +1405,6 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
1405
1405
|
onChain?: boolean | undefined;
|
|
1406
1406
|
}>>;
|
|
1407
1407
|
}, "strict", z.ZodTypeAny, {
|
|
1408
|
-
task?: string | null | undefined;
|
|
1409
|
-
namedNew?: {
|
|
1410
|
-
name?: string | undefined;
|
|
1411
|
-
replaceExistName?: boolean | undefined;
|
|
1412
|
-
tags?: string[] | undefined;
|
|
1413
|
-
onChain?: boolean | undefined;
|
|
1414
|
-
} | undefined;
|
|
1415
1408
|
repository?: {
|
|
1416
1409
|
op: "set" | "add";
|
|
1417
1410
|
objects: string[];
|
|
@@ -1421,6 +1414,13 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
1421
1414
|
} | {
|
|
1422
1415
|
op: "clear";
|
|
1423
1416
|
} | undefined;
|
|
1417
|
+
task?: string | null | undefined;
|
|
1418
|
+
namedNew?: {
|
|
1419
|
+
name?: string | undefined;
|
|
1420
|
+
replaceExistName?: boolean | undefined;
|
|
1421
|
+
tags?: string[] | undefined;
|
|
1422
|
+
onChain?: boolean | undefined;
|
|
1423
|
+
} | undefined;
|
|
1424
1424
|
progress_namedOperator?: {
|
|
1425
1425
|
name: string;
|
|
1426
1426
|
op: "set" | "add" | "remove";
|
|
@@ -1433,13 +1433,6 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
1433
1433
|
};
|
|
1434
1434
|
} | undefined;
|
|
1435
1435
|
}, {
|
|
1436
|
-
task?: string | null | undefined;
|
|
1437
|
-
namedNew?: {
|
|
1438
|
-
name?: string | undefined;
|
|
1439
|
-
replaceExistName?: boolean | undefined;
|
|
1440
|
-
tags?: string[] | undefined;
|
|
1441
|
-
onChain?: boolean | undefined;
|
|
1442
|
-
} | undefined;
|
|
1443
1436
|
repository?: {
|
|
1444
1437
|
op: "set" | "add";
|
|
1445
1438
|
objects: string[];
|
|
@@ -1449,6 +1442,13 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
1449
1442
|
} | {
|
|
1450
1443
|
op: "clear";
|
|
1451
1444
|
} | undefined;
|
|
1445
|
+
task?: string | null | undefined;
|
|
1446
|
+
namedNew?: {
|
|
1447
|
+
name?: string | undefined;
|
|
1448
|
+
replaceExistName?: boolean | undefined;
|
|
1449
|
+
tags?: string[] | undefined;
|
|
1450
|
+
onChain?: boolean | undefined;
|
|
1451
|
+
} | undefined;
|
|
1452
1452
|
progress_namedOperator?: {
|
|
1453
1453
|
name: string;
|
|
1454
1454
|
op: "set" | "add" | "remove";
|
|
@@ -2036,6 +2036,16 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
2036
2036
|
} | undefined;
|
|
2037
2037
|
};
|
|
2038
2038
|
description?: string | undefined;
|
|
2039
|
+
publish?: boolean | undefined;
|
|
2040
|
+
repository?: {
|
|
2041
|
+
op: "set" | "add";
|
|
2042
|
+
objects: string[];
|
|
2043
|
+
} | {
|
|
2044
|
+
op: "remove";
|
|
2045
|
+
objects: string[];
|
|
2046
|
+
} | {
|
|
2047
|
+
op: "clear";
|
|
2048
|
+
} | undefined;
|
|
2039
2049
|
owner_receive?: {
|
|
2040
2050
|
received: {
|
|
2041
2051
|
id: string;
|
|
@@ -2136,23 +2146,7 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
2136
2146
|
} | {
|
|
2137
2147
|
json_or_markdown_file: string;
|
|
2138
2148
|
} | undefined;
|
|
2139
|
-
repository?: {
|
|
2140
|
-
op: "set" | "add";
|
|
2141
|
-
objects: string[];
|
|
2142
|
-
} | {
|
|
2143
|
-
op: "remove";
|
|
2144
|
-
objects: string[];
|
|
2145
|
-
} | {
|
|
2146
|
-
op: "clear";
|
|
2147
|
-
} | undefined;
|
|
2148
2149
|
progress_new?: {
|
|
2149
|
-
task?: string | null | undefined;
|
|
2150
|
-
namedNew?: {
|
|
2151
|
-
name?: string | undefined;
|
|
2152
|
-
replaceExistName?: boolean | undefined;
|
|
2153
|
-
tags?: string[] | undefined;
|
|
2154
|
-
onChain?: boolean | undefined;
|
|
2155
|
-
} | undefined;
|
|
2156
2150
|
repository?: {
|
|
2157
2151
|
op: "set" | "add";
|
|
2158
2152
|
objects: string[];
|
|
@@ -2162,6 +2156,13 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
2162
2156
|
} | {
|
|
2163
2157
|
op: "clear";
|
|
2164
2158
|
} | undefined;
|
|
2159
|
+
task?: string | null | undefined;
|
|
2160
|
+
namedNew?: {
|
|
2161
|
+
name?: string | undefined;
|
|
2162
|
+
replaceExistName?: boolean | undefined;
|
|
2163
|
+
tags?: string[] | undefined;
|
|
2164
|
+
onChain?: boolean | undefined;
|
|
2165
|
+
} | undefined;
|
|
2165
2166
|
progress_namedOperator?: {
|
|
2166
2167
|
name: string;
|
|
2167
2168
|
op: "set" | "add" | "remove";
|
|
@@ -2175,7 +2176,6 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
2175
2176
|
} | undefined;
|
|
2176
2177
|
} | undefined;
|
|
2177
2178
|
pause?: boolean | undefined;
|
|
2178
|
-
publish?: boolean | undefined;
|
|
2179
2179
|
}, {
|
|
2180
2180
|
object: string | {
|
|
2181
2181
|
name?: string | undefined;
|
|
@@ -2191,6 +2191,16 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
2191
2191
|
} | undefined;
|
|
2192
2192
|
};
|
|
2193
2193
|
description?: string | undefined;
|
|
2194
|
+
publish?: boolean | undefined;
|
|
2195
|
+
repository?: {
|
|
2196
|
+
op: "set" | "add";
|
|
2197
|
+
objects: string[];
|
|
2198
|
+
} | {
|
|
2199
|
+
op: "remove";
|
|
2200
|
+
objects: string[];
|
|
2201
|
+
} | {
|
|
2202
|
+
op: "clear";
|
|
2203
|
+
} | undefined;
|
|
2194
2204
|
owner_receive?: {
|
|
2195
2205
|
received: {
|
|
2196
2206
|
id: string;
|
|
@@ -2291,23 +2301,7 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
2291
2301
|
} | {
|
|
2292
2302
|
json_or_markdown_file: string;
|
|
2293
2303
|
} | undefined;
|
|
2294
|
-
repository?: {
|
|
2295
|
-
op: "set" | "add";
|
|
2296
|
-
objects: string[];
|
|
2297
|
-
} | {
|
|
2298
|
-
op: "remove";
|
|
2299
|
-
objects: string[];
|
|
2300
|
-
} | {
|
|
2301
|
-
op: "clear";
|
|
2302
|
-
} | undefined;
|
|
2303
2304
|
progress_new?: {
|
|
2304
|
-
task?: string | null | undefined;
|
|
2305
|
-
namedNew?: {
|
|
2306
|
-
name?: string | undefined;
|
|
2307
|
-
replaceExistName?: boolean | undefined;
|
|
2308
|
-
tags?: string[] | undefined;
|
|
2309
|
-
onChain?: boolean | undefined;
|
|
2310
|
-
} | undefined;
|
|
2311
2305
|
repository?: {
|
|
2312
2306
|
op: "set" | "add";
|
|
2313
2307
|
objects: string[];
|
|
@@ -2317,6 +2311,13 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
2317
2311
|
} | {
|
|
2318
2312
|
op: "clear";
|
|
2319
2313
|
} | undefined;
|
|
2314
|
+
task?: string | null | undefined;
|
|
2315
|
+
namedNew?: {
|
|
2316
|
+
name?: string | undefined;
|
|
2317
|
+
replaceExistName?: boolean | undefined;
|
|
2318
|
+
tags?: string[] | undefined;
|
|
2319
|
+
onChain?: boolean | undefined;
|
|
2320
|
+
} | undefined;
|
|
2320
2321
|
progress_namedOperator?: {
|
|
2321
2322
|
name: string;
|
|
2322
2323
|
op: "set" | "add" | "remove";
|
|
@@ -2330,7 +2331,6 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
|
|
|
2330
2331
|
} | undefined;
|
|
2331
2332
|
} | undefined;
|
|
2332
2333
|
pause?: boolean | undefined;
|
|
2333
|
-
publish?: boolean | undefined;
|
|
2334
2334
|
}>;
|
|
2335
2335
|
export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
2336
2336
|
data: z.ZodObject<{
|
|
@@ -2478,13 +2478,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
2478
2478
|
onChain?: boolean | undefined;
|
|
2479
2479
|
}>>;
|
|
2480
2480
|
}, "strict", z.ZodTypeAny, {
|
|
2481
|
-
task?: string | null | undefined;
|
|
2482
|
-
namedNew?: {
|
|
2483
|
-
name?: string | undefined;
|
|
2484
|
-
replaceExistName?: boolean | undefined;
|
|
2485
|
-
tags?: string[] | undefined;
|
|
2486
|
-
onChain?: boolean | undefined;
|
|
2487
|
-
} | undefined;
|
|
2488
2481
|
repository?: {
|
|
2489
2482
|
op: "set" | "add";
|
|
2490
2483
|
objects: string[];
|
|
@@ -2494,6 +2487,13 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
2494
2487
|
} | {
|
|
2495
2488
|
op: "clear";
|
|
2496
2489
|
} | undefined;
|
|
2490
|
+
task?: string | null | undefined;
|
|
2491
|
+
namedNew?: {
|
|
2492
|
+
name?: string | undefined;
|
|
2493
|
+
replaceExistName?: boolean | undefined;
|
|
2494
|
+
tags?: string[] | undefined;
|
|
2495
|
+
onChain?: boolean | undefined;
|
|
2496
|
+
} | undefined;
|
|
2497
2497
|
progress_namedOperator?: {
|
|
2498
2498
|
name: string;
|
|
2499
2499
|
op: "set" | "add" | "remove";
|
|
@@ -2506,13 +2506,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
2506
2506
|
};
|
|
2507
2507
|
} | undefined;
|
|
2508
2508
|
}, {
|
|
2509
|
-
task?: string | null | undefined;
|
|
2510
|
-
namedNew?: {
|
|
2511
|
-
name?: string | undefined;
|
|
2512
|
-
replaceExistName?: boolean | undefined;
|
|
2513
|
-
tags?: string[] | undefined;
|
|
2514
|
-
onChain?: boolean | undefined;
|
|
2515
|
-
} | undefined;
|
|
2516
2509
|
repository?: {
|
|
2517
2510
|
op: "set" | "add";
|
|
2518
2511
|
objects: string[];
|
|
@@ -2522,6 +2515,13 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
2522
2515
|
} | {
|
|
2523
2516
|
op: "clear";
|
|
2524
2517
|
} | undefined;
|
|
2518
|
+
task?: string | null | undefined;
|
|
2519
|
+
namedNew?: {
|
|
2520
|
+
name?: string | undefined;
|
|
2521
|
+
replaceExistName?: boolean | undefined;
|
|
2522
|
+
tags?: string[] | undefined;
|
|
2523
|
+
onChain?: boolean | undefined;
|
|
2524
|
+
} | undefined;
|
|
2525
2525
|
progress_namedOperator?: {
|
|
2526
2526
|
name: string;
|
|
2527
2527
|
op: "set" | "add" | "remove";
|
|
@@ -3109,6 +3109,16 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3109
3109
|
} | undefined;
|
|
3110
3110
|
};
|
|
3111
3111
|
description?: string | undefined;
|
|
3112
|
+
publish?: boolean | undefined;
|
|
3113
|
+
repository?: {
|
|
3114
|
+
op: "set" | "add";
|
|
3115
|
+
objects: string[];
|
|
3116
|
+
} | {
|
|
3117
|
+
op: "remove";
|
|
3118
|
+
objects: string[];
|
|
3119
|
+
} | {
|
|
3120
|
+
op: "clear";
|
|
3121
|
+
} | undefined;
|
|
3112
3122
|
owner_receive?: {
|
|
3113
3123
|
received: {
|
|
3114
3124
|
id: string;
|
|
@@ -3209,23 +3219,7 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3209
3219
|
} | {
|
|
3210
3220
|
json_or_markdown_file: string;
|
|
3211
3221
|
} | undefined;
|
|
3212
|
-
repository?: {
|
|
3213
|
-
op: "set" | "add";
|
|
3214
|
-
objects: string[];
|
|
3215
|
-
} | {
|
|
3216
|
-
op: "remove";
|
|
3217
|
-
objects: string[];
|
|
3218
|
-
} | {
|
|
3219
|
-
op: "clear";
|
|
3220
|
-
} | undefined;
|
|
3221
3222
|
progress_new?: {
|
|
3222
|
-
task?: string | null | undefined;
|
|
3223
|
-
namedNew?: {
|
|
3224
|
-
name?: string | undefined;
|
|
3225
|
-
replaceExistName?: boolean | undefined;
|
|
3226
|
-
tags?: string[] | undefined;
|
|
3227
|
-
onChain?: boolean | undefined;
|
|
3228
|
-
} | undefined;
|
|
3229
3223
|
repository?: {
|
|
3230
3224
|
op: "set" | "add";
|
|
3231
3225
|
objects: string[];
|
|
@@ -3235,6 +3229,13 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3235
3229
|
} | {
|
|
3236
3230
|
op: "clear";
|
|
3237
3231
|
} | undefined;
|
|
3232
|
+
task?: string | null | undefined;
|
|
3233
|
+
namedNew?: {
|
|
3234
|
+
name?: string | undefined;
|
|
3235
|
+
replaceExistName?: boolean | undefined;
|
|
3236
|
+
tags?: string[] | undefined;
|
|
3237
|
+
onChain?: boolean | undefined;
|
|
3238
|
+
} | undefined;
|
|
3238
3239
|
progress_namedOperator?: {
|
|
3239
3240
|
name: string;
|
|
3240
3241
|
op: "set" | "add" | "remove";
|
|
@@ -3248,7 +3249,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3248
3249
|
} | undefined;
|
|
3249
3250
|
} | undefined;
|
|
3250
3251
|
pause?: boolean | undefined;
|
|
3251
|
-
publish?: boolean | undefined;
|
|
3252
3252
|
}, {
|
|
3253
3253
|
object: string | {
|
|
3254
3254
|
name?: string | undefined;
|
|
@@ -3264,6 +3264,16 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3264
3264
|
} | undefined;
|
|
3265
3265
|
};
|
|
3266
3266
|
description?: string | undefined;
|
|
3267
|
+
publish?: boolean | undefined;
|
|
3268
|
+
repository?: {
|
|
3269
|
+
op: "set" | "add";
|
|
3270
|
+
objects: string[];
|
|
3271
|
+
} | {
|
|
3272
|
+
op: "remove";
|
|
3273
|
+
objects: string[];
|
|
3274
|
+
} | {
|
|
3275
|
+
op: "clear";
|
|
3276
|
+
} | undefined;
|
|
3267
3277
|
owner_receive?: {
|
|
3268
3278
|
received: {
|
|
3269
3279
|
id: string;
|
|
@@ -3364,23 +3374,7 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3364
3374
|
} | {
|
|
3365
3375
|
json_or_markdown_file: string;
|
|
3366
3376
|
} | undefined;
|
|
3367
|
-
repository?: {
|
|
3368
|
-
op: "set" | "add";
|
|
3369
|
-
objects: string[];
|
|
3370
|
-
} | {
|
|
3371
|
-
op: "remove";
|
|
3372
|
-
objects: string[];
|
|
3373
|
-
} | {
|
|
3374
|
-
op: "clear";
|
|
3375
|
-
} | undefined;
|
|
3376
3377
|
progress_new?: {
|
|
3377
|
-
task?: string | null | undefined;
|
|
3378
|
-
namedNew?: {
|
|
3379
|
-
name?: string | undefined;
|
|
3380
|
-
replaceExistName?: boolean | undefined;
|
|
3381
|
-
tags?: string[] | undefined;
|
|
3382
|
-
onChain?: boolean | undefined;
|
|
3383
|
-
} | undefined;
|
|
3384
3378
|
repository?: {
|
|
3385
3379
|
op: "set" | "add";
|
|
3386
3380
|
objects: string[];
|
|
@@ -3390,6 +3384,13 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3390
3384
|
} | {
|
|
3391
3385
|
op: "clear";
|
|
3392
3386
|
} | undefined;
|
|
3387
|
+
task?: string | null | undefined;
|
|
3388
|
+
namedNew?: {
|
|
3389
|
+
name?: string | undefined;
|
|
3390
|
+
replaceExistName?: boolean | undefined;
|
|
3391
|
+
tags?: string[] | undefined;
|
|
3392
|
+
onChain?: boolean | undefined;
|
|
3393
|
+
} | undefined;
|
|
3393
3394
|
progress_namedOperator?: {
|
|
3394
3395
|
name: string;
|
|
3395
3396
|
op: "set" | "add" | "remove";
|
|
@@ -3403,7 +3404,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3403
3404
|
} | undefined;
|
|
3404
3405
|
} | undefined;
|
|
3405
3406
|
pause?: boolean | undefined;
|
|
3406
|
-
publish?: boolean | undefined;
|
|
3407
3407
|
}>;
|
|
3408
3408
|
env: z.ZodOptional<z.ZodObject<{
|
|
3409
3409
|
account: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
@@ -3620,6 +3620,16 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3620
3620
|
} | undefined;
|
|
3621
3621
|
};
|
|
3622
3622
|
description?: string | undefined;
|
|
3623
|
+
publish?: boolean | undefined;
|
|
3624
|
+
repository?: {
|
|
3625
|
+
op: "set" | "add";
|
|
3626
|
+
objects: string[];
|
|
3627
|
+
} | {
|
|
3628
|
+
op: "remove";
|
|
3629
|
+
objects: string[];
|
|
3630
|
+
} | {
|
|
3631
|
+
op: "clear";
|
|
3632
|
+
} | undefined;
|
|
3623
3633
|
owner_receive?: {
|
|
3624
3634
|
received: {
|
|
3625
3635
|
id: string;
|
|
@@ -3720,23 +3730,7 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3720
3730
|
} | {
|
|
3721
3731
|
json_or_markdown_file: string;
|
|
3722
3732
|
} | undefined;
|
|
3723
|
-
repository?: {
|
|
3724
|
-
op: "set" | "add";
|
|
3725
|
-
objects: string[];
|
|
3726
|
-
} | {
|
|
3727
|
-
op: "remove";
|
|
3728
|
-
objects: string[];
|
|
3729
|
-
} | {
|
|
3730
|
-
op: "clear";
|
|
3731
|
-
} | undefined;
|
|
3732
3733
|
progress_new?: {
|
|
3733
|
-
task?: string | null | undefined;
|
|
3734
|
-
namedNew?: {
|
|
3735
|
-
name?: string | undefined;
|
|
3736
|
-
replaceExistName?: boolean | undefined;
|
|
3737
|
-
tags?: string[] | undefined;
|
|
3738
|
-
onChain?: boolean | undefined;
|
|
3739
|
-
} | undefined;
|
|
3740
3734
|
repository?: {
|
|
3741
3735
|
op: "set" | "add";
|
|
3742
3736
|
objects: string[];
|
|
@@ -3746,6 +3740,13 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3746
3740
|
} | {
|
|
3747
3741
|
op: "clear";
|
|
3748
3742
|
} | undefined;
|
|
3743
|
+
task?: string | null | undefined;
|
|
3744
|
+
namedNew?: {
|
|
3745
|
+
name?: string | undefined;
|
|
3746
|
+
replaceExistName?: boolean | undefined;
|
|
3747
|
+
tags?: string[] | undefined;
|
|
3748
|
+
onChain?: boolean | undefined;
|
|
3749
|
+
} | undefined;
|
|
3749
3750
|
progress_namedOperator?: {
|
|
3750
3751
|
name: string;
|
|
3751
3752
|
op: "set" | "add" | "remove";
|
|
@@ -3759,7 +3760,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3759
3760
|
} | undefined;
|
|
3760
3761
|
} | undefined;
|
|
3761
3762
|
pause?: boolean | undefined;
|
|
3762
|
-
publish?: boolean | undefined;
|
|
3763
3763
|
};
|
|
3764
3764
|
submission?: {
|
|
3765
3765
|
type: "submission";
|
|
@@ -3811,6 +3811,16 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3811
3811
|
} | undefined;
|
|
3812
3812
|
};
|
|
3813
3813
|
description?: string | undefined;
|
|
3814
|
+
publish?: boolean | undefined;
|
|
3815
|
+
repository?: {
|
|
3816
|
+
op: "set" | "add";
|
|
3817
|
+
objects: string[];
|
|
3818
|
+
} | {
|
|
3819
|
+
op: "remove";
|
|
3820
|
+
objects: string[];
|
|
3821
|
+
} | {
|
|
3822
|
+
op: "clear";
|
|
3823
|
+
} | undefined;
|
|
3814
3824
|
owner_receive?: {
|
|
3815
3825
|
received: {
|
|
3816
3826
|
id: string;
|
|
@@ -3911,23 +3921,7 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3911
3921
|
} | {
|
|
3912
3922
|
json_or_markdown_file: string;
|
|
3913
3923
|
} | undefined;
|
|
3914
|
-
repository?: {
|
|
3915
|
-
op: "set" | "add";
|
|
3916
|
-
objects: string[];
|
|
3917
|
-
} | {
|
|
3918
|
-
op: "remove";
|
|
3919
|
-
objects: string[];
|
|
3920
|
-
} | {
|
|
3921
|
-
op: "clear";
|
|
3922
|
-
} | undefined;
|
|
3923
3924
|
progress_new?: {
|
|
3924
|
-
task?: string | null | undefined;
|
|
3925
|
-
namedNew?: {
|
|
3926
|
-
name?: string | undefined;
|
|
3927
|
-
replaceExistName?: boolean | undefined;
|
|
3928
|
-
tags?: string[] | undefined;
|
|
3929
|
-
onChain?: boolean | undefined;
|
|
3930
|
-
} | undefined;
|
|
3931
3925
|
repository?: {
|
|
3932
3926
|
op: "set" | "add";
|
|
3933
3927
|
objects: string[];
|
|
@@ -3937,6 +3931,13 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3937
3931
|
} | {
|
|
3938
3932
|
op: "clear";
|
|
3939
3933
|
} | undefined;
|
|
3934
|
+
task?: string | null | undefined;
|
|
3935
|
+
namedNew?: {
|
|
3936
|
+
name?: string | undefined;
|
|
3937
|
+
replaceExistName?: boolean | undefined;
|
|
3938
|
+
tags?: string[] | undefined;
|
|
3939
|
+
onChain?: boolean | undefined;
|
|
3940
|
+
} | undefined;
|
|
3940
3941
|
progress_namedOperator?: {
|
|
3941
3942
|
name: string;
|
|
3942
3943
|
op: "set" | "add" | "remove";
|
|
@@ -3950,7 +3951,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
|
|
|
3950
3951
|
} | undefined;
|
|
3951
3952
|
} | undefined;
|
|
3952
3953
|
pause?: boolean | undefined;
|
|
3953
|
-
publish?: boolean | undefined;
|
|
3954
3954
|
};
|
|
3955
3955
|
submission?: {
|
|
3956
3956
|
type: "submission";
|
|
@@ -19,11 +19,11 @@ export declare const ArbObjectionSchema: z.ZodObject<{
|
|
|
19
19
|
arb: z.ZodEffects<z.ZodString, string, string>;
|
|
20
20
|
objection: z.ZodEffects<z.ZodString, string, string>;
|
|
21
21
|
}, "strict", z.ZodTypeAny, {
|
|
22
|
-
objection: string;
|
|
23
22
|
arb: string;
|
|
24
|
-
}, {
|
|
25
23
|
objection: string;
|
|
24
|
+
}, {
|
|
26
25
|
arb: string;
|
|
26
|
+
objection: string;
|
|
27
27
|
}>;
|
|
28
28
|
export declare const ArbClaimCompensationSchema: z.ZodObject<{
|
|
29
29
|
arb: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -111,11 +111,11 @@ export declare const CallOrder_DataSchema: z.ZodObject<{
|
|
|
111
111
|
arb: z.ZodEffects<z.ZodString, string, string>;
|
|
112
112
|
objection: z.ZodEffects<z.ZodString, string, string>;
|
|
113
113
|
}, "strict", z.ZodTypeAny, {
|
|
114
|
-
objection: string;
|
|
115
114
|
arb: string;
|
|
116
|
-
}, {
|
|
117
115
|
objection: string;
|
|
116
|
+
}, {
|
|
118
117
|
arb: string;
|
|
118
|
+
objection: string;
|
|
119
119
|
}>>;
|
|
120
120
|
arb_claim_compensation: z.ZodOptional<z.ZodObject<{
|
|
121
121
|
arb: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -235,8 +235,8 @@ export declare const CallOrder_DataSchema: z.ZodObject<{
|
|
|
235
235
|
proposition?: string[] | undefined;
|
|
236
236
|
} | undefined;
|
|
237
237
|
arb_objection?: {
|
|
238
|
-
objection: string;
|
|
239
238
|
arb: string;
|
|
239
|
+
objection: string;
|
|
240
240
|
} | undefined;
|
|
241
241
|
arb_claim_compensation?: {
|
|
242
242
|
arb: string;
|
|
@@ -286,8 +286,8 @@ export declare const CallOrder_DataSchema: z.ZodObject<{
|
|
|
286
286
|
proposition?: string[] | undefined;
|
|
287
287
|
} | undefined;
|
|
288
288
|
arb_objection?: {
|
|
289
|
-
objection: string;
|
|
290
289
|
arb: string;
|
|
290
|
+
objection: string;
|
|
291
291
|
} | undefined;
|
|
292
292
|
arb_claim_compensation?: {
|
|
293
293
|
arb: string;
|
|
@@ -392,11 +392,11 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
|
|
|
392
392
|
arb: z.ZodEffects<z.ZodString, string, string>;
|
|
393
393
|
objection: z.ZodEffects<z.ZodString, string, string>;
|
|
394
394
|
}, "strict", z.ZodTypeAny, {
|
|
395
|
-
objection: string;
|
|
396
395
|
arb: string;
|
|
397
|
-
}, {
|
|
398
396
|
objection: string;
|
|
397
|
+
}, {
|
|
399
398
|
arb: string;
|
|
399
|
+
objection: string;
|
|
400
400
|
}>>;
|
|
401
401
|
arb_claim_compensation: z.ZodOptional<z.ZodObject<{
|
|
402
402
|
arb: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -516,8 +516,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
|
|
|
516
516
|
proposition?: string[] | undefined;
|
|
517
517
|
} | undefined;
|
|
518
518
|
arb_objection?: {
|
|
519
|
-
objection: string;
|
|
520
519
|
arb: string;
|
|
520
|
+
objection: string;
|
|
521
521
|
} | undefined;
|
|
522
522
|
arb_claim_compensation?: {
|
|
523
523
|
arb: string;
|
|
@@ -567,8 +567,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
|
|
|
567
567
|
proposition?: string[] | undefined;
|
|
568
568
|
} | undefined;
|
|
569
569
|
arb_objection?: {
|
|
570
|
-
objection: string;
|
|
571
570
|
arb: string;
|
|
571
|
+
objection: string;
|
|
572
572
|
} | undefined;
|
|
573
573
|
arb_claim_compensation?: {
|
|
574
574
|
arb: string;
|
|
@@ -819,8 +819,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
|
|
|
819
819
|
proposition?: string[] | undefined;
|
|
820
820
|
} | undefined;
|
|
821
821
|
arb_objection?: {
|
|
822
|
-
objection: string;
|
|
823
822
|
arb: string;
|
|
823
|
+
objection: string;
|
|
824
824
|
} | undefined;
|
|
825
825
|
arb_claim_compensation?: {
|
|
826
826
|
arb: string;
|
|
@@ -906,8 +906,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
|
|
|
906
906
|
proposition?: string[] | undefined;
|
|
907
907
|
} | undefined;
|
|
908
908
|
arb_objection?: {
|
|
909
|
-
objection: string;
|
|
910
909
|
arb: string;
|
|
910
|
+
objection: string;
|
|
911
911
|
} | undefined;
|
|
912
912
|
arb_claim_compensation?: {
|
|
913
913
|
arb: string;
|