wowok_agent 2.1.20 → 2.1.22
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 +102 -102
- package/dist/index.js +58 -13
- package/dist/schema/call/allocation.d.ts +8 -8
- package/dist/schema/call/arbitration.d.ts +8 -8
- package/dist/schema/call/base.d.ts +24 -24
- package/dist/schema/call/contact.d.ts +8 -8
- package/dist/schema/call/demand.d.ts +8 -8
- package/dist/schema/call/guard.d.ts +18 -18
- package/dist/schema/call/machine.d.ts +8 -8
- package/dist/schema/call/order.d.ts +8 -8
- package/dist/schema/call/permission.d.ts +8 -8
- package/dist/schema/call/progress.d.ts +8 -8
- package/dist/schema/call/repository.d.ts +8 -8
- package/dist/schema/call/reward.d.ts +8 -8
- package/dist/schema/call/service.d.ts +8 -8
- package/dist/schema/call/treasury.d.ts +8 -8
- package/dist/schema/common/index.d.ts +39 -4
- package/dist/schema/common/index.js +20 -0
- package/dist/schema/messenger/index.d.ts +247 -88
- package/dist/schema/messenger/index.js +41 -11
- package/dist/schema/query/index.d.ts +22 -22
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import packageJson from "../package.json" with { type: "json" };
|
|
|
8
8
|
// Import schema
|
|
9
9
|
import { CallService_DataSchema, CallMachine_DataSchema, MachineNode2File_InputSchema, MachineNode2File_OutputWrappedSchema, CallProgress_DataSchema, CallPermission_DataSchema, CallGuard_DataSchema, Guard2File_InputSchema, Guard2File_OutputWrappedSchema, CallArbitration_DataSchema, CallRepository_DataSchema, CallContact_DataSchema, CallTreasury_DataSchema, CallReward_DataSchema, CallAllocation_DataSchema, CallPersonal_DataSchema, CallPayment_DataSchema, CallDemand_DataSchema, CallOrder_DataSchema, CallEnvSchema, SubmissionCallSchema, strictParse, CallOutputSchema, handleCallResult, createServerConfig, createCapabilitiesConfig, createToolMeta, transformSubmission, getEnvConfig, WipGenerationOptionsSchema, WipToHtmlOptionsSchema, TokenDataFilterSchema, LocalInfoFilterSchema, LocalMarkFilterSchema, AccountFilterSchema, TokenTypeSchema, OnchainEventsInputSchema, OnchainEventsResultSchema, ProtocolInfoQuerySchema, ProtocolInfoResultSchema, WatchQueryOperationsResultSchema, NameOrAddressSchema, AccountOrMark_AddressSchema, ObjectTypeSchema, AccountOperationOutputWrappedSchema, LocalMarkOperationOutputWrappedSchema, LocalInfoOperationOutputWrappedSchema, WipOperationOutputSchema, MessengerOperationOutputSchema, AccountOperationSchema, LocalMarkOperationSchema, LocalInfoOperationSchema, parseMachineNodesFromText, formatNodeErrors as formatMachineNodeErrors, MessengerOperationInputSchema, } from "./schema/index.js";
|
|
10
10
|
// Import wowok SDK
|
|
11
|
-
import { CallService, CallMachine, CallProgress, CallPermission, CallGuard, CallArbitration, CallRepository, CallContact, CallTreasury, CallReward, CallAllocation, CallPersonal, CallPayment, CallDemand, CallOrder, gen_passport, guard2file, parseGuardFile, formatGuardParseErrors, machineNode2file, generateNodeComments, generate_wip, verify_wip, sign_wip, wip2html, account_operation, local_mark_operation, local_info_operation, watch_conversations, send_message, send_file, watch_messages, extract_zip_messages, generate_wts, verify_wts, sign_wts, wts2html, proof_message, query_local_mark_list, query_account_list, query_local_info_list, query_local_token_list, query_account, query_personal, query_objects, query_table, queryProtocolInfo, query_received, queryTableItem_RepositoryData, queryTableItem_PermissionPerm, queryTableItem_RewardRecord, queryTableItem_DemandPresenter, queryTableItem_TreasuryHistory, queryTableItem_MachineNode, queryTableItem_ProgressHistory, queryTableItem_AddressMark, queryTableItem_EntityRegistrar, queryTableItem_EntityLinker, query_events, blacklist, friendslist, guardlist, } from "wowok";
|
|
11
|
+
import { CallService, CallMachine, CallProgress, CallPermission, CallGuard, CallArbitration, CallRepository, CallContact, CallTreasury, CallReward, CallAllocation, CallPersonal, CallPayment, CallDemand, CallOrder, gen_passport, guard2file, parseGuardFile, formatGuardParseErrors, machineNode2file, generateNodeComments, generate_wip, verify_wip, sign_wip, wip2html, account_operation, local_mark_operation, local_info_operation, watch_conversations, send_message, send_file, watch_messages, extract_zip_messages, generate_wts, verify_wts, sign_wts, wts2html, proof_message, query_local_mark_list, query_account_list, query_local_info_list, query_local_token_list, query_account, query_personal, query_objects, query_table, queryProtocolInfo, query_received, queryTableItem_RepositoryData, queryTableItem_PermissionPerm, queryTableItem_RewardRecord, queryTableItem_DemandPresenter, queryTableItem_TreasuryHistory, queryTableItem_MachineNode, queryTableItem_ProgressHistory, queryTableItem_AddressMark, queryTableItem_EntityRegistrar, queryTableItem_EntityLinker, query_events, blacklist, friendslist, guardlist, settings, } from "wowok";
|
|
12
12
|
// Create server instance
|
|
13
13
|
const server = new McpServer(createServerConfig(packageJson), createCapabilitiesConfig());
|
|
14
14
|
// ================================================
|
|
@@ -703,6 +703,23 @@ async function handleOnchainEvents(args) {
|
|
|
703
703
|
structuredContent: { result: queryResult },
|
|
704
704
|
};
|
|
705
705
|
}
|
|
706
|
+
// Helper function to normalize AccountOrMark_Address from union type (string | object) to object
|
|
707
|
+
function normalizeAccountOrMark(input) {
|
|
708
|
+
if (typeof input === 'string') {
|
|
709
|
+
return { name_or_address: input, local_mark_first: true };
|
|
710
|
+
}
|
|
711
|
+
return input;
|
|
712
|
+
}
|
|
713
|
+
// Helper function to normalize ManyAccountOrMark_Address from union type (string[] | object) to object
|
|
714
|
+
function normalizeManyAccountOrMark(input) {
|
|
715
|
+
if (Array.isArray(input)) {
|
|
716
|
+
return {
|
|
717
|
+
entities: input.map(item => typeof item === 'string' ? { name_or_address: item, local_mark_first: true } : item),
|
|
718
|
+
check_all_founded: true
|
|
719
|
+
};
|
|
720
|
+
}
|
|
721
|
+
return input;
|
|
722
|
+
}
|
|
706
723
|
async function handleMessengerOperation(args) {
|
|
707
724
|
const validated = strictParse(MessengerOperationInputSchema, args, "messenger_operation input");
|
|
708
725
|
let result;
|
|
@@ -713,7 +730,7 @@ async function handleMessengerOperation(args) {
|
|
|
713
730
|
break;
|
|
714
731
|
}
|
|
715
732
|
case "send_message": {
|
|
716
|
-
const sendResult = await send_message(validated.from, validated.to, validated.content, validated.options);
|
|
733
|
+
const sendResult = await send_message(validated.from, normalizeAccountOrMark(validated.to), validated.content, validated.options);
|
|
717
734
|
// Filter out leafHash from merkleData to match schema
|
|
718
735
|
const filteredResult = {
|
|
719
736
|
...sendResult,
|
|
@@ -730,7 +747,7 @@ async function handleMessengerOperation(args) {
|
|
|
730
747
|
break;
|
|
731
748
|
}
|
|
732
749
|
case "send_file": {
|
|
733
|
-
const sendResult = await send_file(validated.from, validated.to, validated.filePath, validated.options);
|
|
750
|
+
const sendResult = await send_file(validated.from, normalizeAccountOrMark(validated.to), validated.filePath, validated.options);
|
|
734
751
|
// Filter out leafHash from merkleData to match schema
|
|
735
752
|
const filteredResult = {
|
|
736
753
|
...sendResult,
|
|
@@ -747,7 +764,12 @@ async function handleMessengerOperation(args) {
|
|
|
747
764
|
break;
|
|
748
765
|
}
|
|
749
766
|
case "watch_messages": {
|
|
750
|
-
|
|
767
|
+
// Normalize peerAddress in filter if it exists
|
|
768
|
+
const filter = validated.filter ? {
|
|
769
|
+
...validated.filter,
|
|
770
|
+
peerAddress: validated.filter.peerAddress ? normalizeAccountOrMark(validated.filter.peerAddress) : undefined
|
|
771
|
+
} : undefined;
|
|
772
|
+
const messages = await watch_messages(filter);
|
|
751
773
|
result = { operation: "watch_messages", result: messages };
|
|
752
774
|
break;
|
|
753
775
|
}
|
|
@@ -757,7 +779,12 @@ async function handleMessengerOperation(args) {
|
|
|
757
779
|
break;
|
|
758
780
|
}
|
|
759
781
|
case "generate_wts": {
|
|
760
|
-
|
|
782
|
+
// Normalize peerAccount in params if it exists
|
|
783
|
+
const params = validated.params ? {
|
|
784
|
+
...validated.params,
|
|
785
|
+
peerAccount: normalizeAccountOrMark(validated.params.peerAccount)
|
|
786
|
+
} : undefined;
|
|
787
|
+
const wtsResult = await generate_wts(params);
|
|
761
788
|
result = { operation: "generate_wts", result: wtsResult };
|
|
762
789
|
break;
|
|
763
790
|
}
|
|
@@ -782,18 +809,28 @@ async function handleMessengerOperation(args) {
|
|
|
782
809
|
break;
|
|
783
810
|
}
|
|
784
811
|
case "blacklist": {
|
|
785
|
-
|
|
812
|
+
// Normalize users if they exist (for add, remove, exist operations)
|
|
813
|
+
const blacklistParams = {
|
|
786
814
|
account: validated.account,
|
|
787
|
-
|
|
788
|
-
}
|
|
815
|
+
op: validated.blacklist.op
|
|
816
|
+
};
|
|
817
|
+
if ('users' in validated.blacklist) {
|
|
818
|
+
blacklistParams.users = normalizeManyAccountOrMark(validated.blacklist.users);
|
|
819
|
+
}
|
|
820
|
+
const blacklistResult = await blacklist(blacklistParams);
|
|
789
821
|
result = { operation: "blacklist", op: validated.blacklist.op, result: blacklistResult.result };
|
|
790
822
|
break;
|
|
791
823
|
}
|
|
792
824
|
case "friendslist": {
|
|
793
|
-
|
|
825
|
+
// Normalize users if they exist (for add, remove, exist operations)
|
|
826
|
+
const friendslistParams = {
|
|
794
827
|
account: validated.account,
|
|
795
|
-
|
|
796
|
-
}
|
|
828
|
+
op: validated.friendslist.op
|
|
829
|
+
};
|
|
830
|
+
if ('users' in validated.friendslist) {
|
|
831
|
+
friendslistParams.users = normalizeManyAccountOrMark(validated.friendslist.users);
|
|
832
|
+
}
|
|
833
|
+
const friendslistResult = await friendslist(friendslistParams);
|
|
797
834
|
result = { operation: "friendslist", op: validated.friendslist.op, result: friendslistResult.result };
|
|
798
835
|
break;
|
|
799
836
|
}
|
|
@@ -805,6 +842,14 @@ async function handleMessengerOperation(args) {
|
|
|
805
842
|
result = { operation: "guardlist", op: validated.guardlist.op, result: guardlistResult.result };
|
|
806
843
|
break;
|
|
807
844
|
}
|
|
845
|
+
case "settings": {
|
|
846
|
+
const settingsResult = await settings({
|
|
847
|
+
account: validated.account,
|
|
848
|
+
...validated.settings
|
|
849
|
+
});
|
|
850
|
+
result = { operation: "settings", op: validated.settings.op, result: settingsResult.result };
|
|
851
|
+
break;
|
|
852
|
+
}
|
|
808
853
|
default:
|
|
809
854
|
throw new Error(`Unknown messenger operation: ${validated.operation}`);
|
|
810
855
|
}
|
|
@@ -952,11 +997,11 @@ async function main() {
|
|
|
952
997
|
// Messenger Operations Tool
|
|
953
998
|
server.registerTool("messenger_operation", {
|
|
954
999
|
title: "💬 Messenger Operations",
|
|
955
|
-
description: "WoWok encrypted messenger operations: watch conversations, send message, send file, watch messages, extract zip messages, generate WTS, verify WTS, sign WTS, WTS to HTML, proof message on-chain, manage blacklist, friendslist, and
|
|
1000
|
+
description: "WoWok encrypted messenger operations: watch conversations, send message, send file, watch messages, extract zip messages, generate WTS, verify WTS, sign WTS, WTS to HTML, proof message on-chain, manage blacklist, friendslist, guardlist, and settings.",
|
|
956
1001
|
inputSchema: MessengerOperationInputSchema,
|
|
957
1002
|
outputSchema: MessengerOperationOutputSchema,
|
|
958
1003
|
annotations: { readOnlyHint: false, destructiveHint: true, idempotentHint: false, openWorldHint: true },
|
|
959
|
-
_meta: createToolMeta("operation", ["messenger", "message", "file", "wts", "blacklist", "friendslist", "guardlist", "proof", "communication"]),
|
|
1004
|
+
_meta: createToolMeta("operation", ["messenger", "message", "file", "wts", "blacklist", "friendslist", "guardlist", "settings", "proof", "communication"]),
|
|
960
1005
|
}, handleMessengerOperation);
|
|
961
1006
|
// Guard2File Tool - Export Guard to JSON/Markdown file
|
|
962
1007
|
server.registerTool("guard2file", {
|
|
@@ -1133,7 +1133,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
|
|
|
1133
1133
|
local_mark_first?: boolean | undefined;
|
|
1134
1134
|
}[];
|
|
1135
1135
|
check_all_founded?: boolean | undefined;
|
|
1136
|
-
} |
|
|
1136
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1137
1137
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1138
1138
|
}, {
|
|
1139
1139
|
identifier: number;
|
|
@@ -1148,7 +1148,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
|
|
|
1148
1148
|
local_mark_first?: boolean | undefined;
|
|
1149
1149
|
}[];
|
|
1150
1150
|
check_all_founded?: boolean | undefined;
|
|
1151
|
-
} |
|
|
1151
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1152
1152
|
name?: string | undefined;
|
|
1153
1153
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1154
1154
|
}>, "many">;
|
|
@@ -1168,7 +1168,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
|
|
|
1168
1168
|
local_mark_first?: boolean | undefined;
|
|
1169
1169
|
}[];
|
|
1170
1170
|
check_all_founded?: boolean | undefined;
|
|
1171
|
-
} |
|
|
1171
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1172
1172
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1173
1173
|
}[];
|
|
1174
1174
|
}, {
|
|
@@ -1186,7 +1186,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
|
|
|
1186
1186
|
local_mark_first?: boolean | undefined;
|
|
1187
1187
|
}[];
|
|
1188
1188
|
check_all_founded?: boolean | undefined;
|
|
1189
|
-
} |
|
|
1189
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1190
1190
|
name?: string | undefined;
|
|
1191
1191
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1192
1192
|
}[];
|
|
@@ -1213,7 +1213,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
|
|
|
1213
1213
|
local_mark_first?: boolean | undefined;
|
|
1214
1214
|
}[];
|
|
1215
1215
|
check_all_founded?: boolean | undefined;
|
|
1216
|
-
} |
|
|
1216
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1217
1217
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1218
1218
|
}[];
|
|
1219
1219
|
}[];
|
|
@@ -1238,7 +1238,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
|
|
|
1238
1238
|
local_mark_first?: boolean | undefined;
|
|
1239
1239
|
}[];
|
|
1240
1240
|
check_all_founded?: boolean | undefined;
|
|
1241
|
-
} |
|
|
1241
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1242
1242
|
name?: string | undefined;
|
|
1243
1243
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1244
1244
|
}[];
|
|
@@ -1322,7 +1322,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
|
|
|
1322
1322
|
local_mark_first?: boolean | undefined;
|
|
1323
1323
|
}[];
|
|
1324
1324
|
check_all_founded?: boolean | undefined;
|
|
1325
|
-
} |
|
|
1325
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1326
1326
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1327
1327
|
}[];
|
|
1328
1328
|
}[];
|
|
@@ -1411,7 +1411,7 @@ export declare const CallAllocation_InputSchema: z.ZodObject<{
|
|
|
1411
1411
|
local_mark_first?: boolean | undefined;
|
|
1412
1412
|
}[];
|
|
1413
1413
|
check_all_founded?: boolean | undefined;
|
|
1414
|
-
} |
|
|
1414
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1415
1415
|
name?: string | undefined;
|
|
1416
1416
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1417
1417
|
}[];
|
|
@@ -1545,7 +1545,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
|
|
|
1545
1545
|
local_mark_first?: boolean | undefined;
|
|
1546
1546
|
}[];
|
|
1547
1547
|
check_all_founded?: boolean | undefined;
|
|
1548
|
-
} |
|
|
1548
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1549
1549
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1550
1550
|
}, {
|
|
1551
1551
|
identifier: number;
|
|
@@ -1560,7 +1560,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
|
|
|
1560
1560
|
local_mark_first?: boolean | undefined;
|
|
1561
1561
|
}[];
|
|
1562
1562
|
check_all_founded?: boolean | undefined;
|
|
1563
|
-
} |
|
|
1563
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1564
1564
|
name?: string | undefined;
|
|
1565
1565
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1566
1566
|
}>, "many">;
|
|
@@ -1580,7 +1580,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
|
|
|
1580
1580
|
local_mark_first?: boolean | undefined;
|
|
1581
1581
|
}[];
|
|
1582
1582
|
check_all_founded?: boolean | undefined;
|
|
1583
|
-
} |
|
|
1583
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1584
1584
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1585
1585
|
}[];
|
|
1586
1586
|
}, {
|
|
@@ -1598,7 +1598,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
|
|
|
1598
1598
|
local_mark_first?: boolean | undefined;
|
|
1599
1599
|
}[];
|
|
1600
1600
|
check_all_founded?: boolean | undefined;
|
|
1601
|
-
} |
|
|
1601
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1602
1602
|
name?: string | undefined;
|
|
1603
1603
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1604
1604
|
}[];
|
|
@@ -1625,7 +1625,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
|
|
|
1625
1625
|
local_mark_first?: boolean | undefined;
|
|
1626
1626
|
}[];
|
|
1627
1627
|
check_all_founded?: boolean | undefined;
|
|
1628
|
-
} |
|
|
1628
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1629
1629
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1630
1630
|
}[];
|
|
1631
1631
|
}[];
|
|
@@ -1650,7 +1650,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
|
|
|
1650
1650
|
local_mark_first?: boolean | undefined;
|
|
1651
1651
|
}[];
|
|
1652
1652
|
check_all_founded?: boolean | undefined;
|
|
1653
|
-
} |
|
|
1653
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1654
1654
|
name?: string | undefined;
|
|
1655
1655
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1656
1656
|
}[];
|
|
@@ -1789,7 +1789,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
|
|
|
1789
1789
|
local_mark_first?: boolean | undefined;
|
|
1790
1790
|
}[];
|
|
1791
1791
|
check_all_founded?: boolean | undefined;
|
|
1792
|
-
} |
|
|
1792
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1793
1793
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1794
1794
|
}[];
|
|
1795
1795
|
}[];
|
|
@@ -1933,7 +1933,7 @@ export declare const CallArbitration_InputSchema: z.ZodObject<{
|
|
|
1933
1933
|
local_mark_first?: boolean | undefined;
|
|
1934
1934
|
}[];
|
|
1935
1935
|
check_all_founded?: boolean | undefined;
|
|
1936
|
-
} |
|
|
1936
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1937
1937
|
name?: string | undefined;
|
|
1938
1938
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1939
1939
|
}[];
|
|
@@ -525,7 +525,7 @@ export declare const GuardSubmissionToFillSchema: z.ZodObject<{
|
|
|
525
525
|
local_mark_first?: boolean | undefined;
|
|
526
526
|
}[];
|
|
527
527
|
check_all_founded?: boolean | undefined;
|
|
528
|
-
} |
|
|
528
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
529
529
|
object_type?: import("wowok").ObjectType | undefined;
|
|
530
530
|
}, {
|
|
531
531
|
identifier: number;
|
|
@@ -540,7 +540,7 @@ export declare const GuardSubmissionToFillSchema: z.ZodObject<{
|
|
|
540
540
|
local_mark_first?: boolean | undefined;
|
|
541
541
|
}[];
|
|
542
542
|
check_all_founded?: boolean | undefined;
|
|
543
|
-
} |
|
|
543
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
544
544
|
name?: string | undefined;
|
|
545
545
|
object_type?: import("wowok").ObjectType | undefined;
|
|
546
546
|
}>, "many">;
|
|
@@ -560,7 +560,7 @@ export declare const GuardSubmissionToFillSchema: z.ZodObject<{
|
|
|
560
560
|
local_mark_first?: boolean | undefined;
|
|
561
561
|
}[];
|
|
562
562
|
check_all_founded?: boolean | undefined;
|
|
563
|
-
} |
|
|
563
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
564
564
|
object_type?: import("wowok").ObjectType | undefined;
|
|
565
565
|
}[];
|
|
566
566
|
}, {
|
|
@@ -578,7 +578,7 @@ export declare const GuardSubmissionToFillSchema: z.ZodObject<{
|
|
|
578
578
|
local_mark_first?: boolean | undefined;
|
|
579
579
|
}[];
|
|
580
580
|
check_all_founded?: boolean | undefined;
|
|
581
|
-
} |
|
|
581
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
582
582
|
name?: string | undefined;
|
|
583
583
|
object_type?: import("wowok").ObjectType | undefined;
|
|
584
584
|
}[];
|
|
@@ -652,7 +652,7 @@ export declare const SubmissionCallSchema: z.ZodObject<{
|
|
|
652
652
|
local_mark_first?: boolean | undefined;
|
|
653
653
|
}[];
|
|
654
654
|
check_all_founded?: boolean | undefined;
|
|
655
|
-
} |
|
|
655
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
656
656
|
object_type?: import("wowok").ObjectType | undefined;
|
|
657
657
|
}, {
|
|
658
658
|
identifier: number;
|
|
@@ -667,7 +667,7 @@ export declare const SubmissionCallSchema: z.ZodObject<{
|
|
|
667
667
|
local_mark_first?: boolean | undefined;
|
|
668
668
|
}[];
|
|
669
669
|
check_all_founded?: boolean | undefined;
|
|
670
|
-
} |
|
|
670
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
671
671
|
name?: string | undefined;
|
|
672
672
|
object_type?: import("wowok").ObjectType | undefined;
|
|
673
673
|
}>, "many">;
|
|
@@ -687,7 +687,7 @@ export declare const SubmissionCallSchema: z.ZodObject<{
|
|
|
687
687
|
local_mark_first?: boolean | undefined;
|
|
688
688
|
}[];
|
|
689
689
|
check_all_founded?: boolean | undefined;
|
|
690
|
-
} |
|
|
690
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
691
691
|
object_type?: import("wowok").ObjectType | undefined;
|
|
692
692
|
}[];
|
|
693
693
|
}, {
|
|
@@ -705,7 +705,7 @@ export declare const SubmissionCallSchema: z.ZodObject<{
|
|
|
705
705
|
local_mark_first?: boolean | undefined;
|
|
706
706
|
}[];
|
|
707
707
|
check_all_founded?: boolean | undefined;
|
|
708
|
-
} |
|
|
708
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
709
709
|
name?: string | undefined;
|
|
710
710
|
object_type?: import("wowok").ObjectType | undefined;
|
|
711
711
|
}[];
|
|
@@ -732,7 +732,7 @@ export declare const SubmissionCallSchema: z.ZodObject<{
|
|
|
732
732
|
local_mark_first?: boolean | undefined;
|
|
733
733
|
}[];
|
|
734
734
|
check_all_founded?: boolean | undefined;
|
|
735
|
-
} |
|
|
735
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
736
736
|
object_type?: import("wowok").ObjectType | undefined;
|
|
737
737
|
}[];
|
|
738
738
|
}[];
|
|
@@ -757,7 +757,7 @@ export declare const SubmissionCallSchema: z.ZodObject<{
|
|
|
757
757
|
local_mark_first?: boolean | undefined;
|
|
758
758
|
}[];
|
|
759
759
|
check_all_founded?: boolean | undefined;
|
|
760
|
-
} |
|
|
760
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
761
761
|
name?: string | undefined;
|
|
762
762
|
object_type?: import("wowok").ObjectType | undefined;
|
|
763
763
|
}[];
|
|
@@ -958,7 +958,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
958
958
|
local_mark_first?: boolean | undefined;
|
|
959
959
|
}[];
|
|
960
960
|
check_all_founded?: boolean | undefined;
|
|
961
|
-
} |
|
|
961
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
962
962
|
object_type?: import("wowok").ObjectType | undefined;
|
|
963
963
|
}, {
|
|
964
964
|
identifier: number;
|
|
@@ -973,7 +973,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
973
973
|
local_mark_first?: boolean | undefined;
|
|
974
974
|
}[];
|
|
975
975
|
check_all_founded?: boolean | undefined;
|
|
976
|
-
} |
|
|
976
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
977
977
|
name?: string | undefined;
|
|
978
978
|
object_type?: import("wowok").ObjectType | undefined;
|
|
979
979
|
}>, "many">;
|
|
@@ -993,7 +993,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
993
993
|
local_mark_first?: boolean | undefined;
|
|
994
994
|
}[];
|
|
995
995
|
check_all_founded?: boolean | undefined;
|
|
996
|
-
} |
|
|
996
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
997
997
|
object_type?: import("wowok").ObjectType | undefined;
|
|
998
998
|
}[];
|
|
999
999
|
}, {
|
|
@@ -1011,7 +1011,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1011
1011
|
local_mark_first?: boolean | undefined;
|
|
1012
1012
|
}[];
|
|
1013
1013
|
check_all_founded?: boolean | undefined;
|
|
1014
|
-
} |
|
|
1014
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1015
1015
|
name?: string | undefined;
|
|
1016
1016
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1017
1017
|
}[];
|
|
@@ -1038,7 +1038,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1038
1038
|
local_mark_first?: boolean | undefined;
|
|
1039
1039
|
}[];
|
|
1040
1040
|
check_all_founded?: boolean | undefined;
|
|
1041
|
-
} |
|
|
1041
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1042
1042
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1043
1043
|
}[];
|
|
1044
1044
|
}[];
|
|
@@ -1063,7 +1063,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1063
1063
|
local_mark_first?: boolean | undefined;
|
|
1064
1064
|
}[];
|
|
1065
1065
|
check_all_founded?: boolean | undefined;
|
|
1066
|
-
} |
|
|
1066
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1067
1067
|
name?: string | undefined;
|
|
1068
1068
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1069
1069
|
}[];
|
|
@@ -3757,7 +3757,7 @@ export declare const CallOutputSchema: z.ZodObject<{
|
|
|
3757
3757
|
local_mark_first?: boolean | undefined;
|
|
3758
3758
|
}[];
|
|
3759
3759
|
check_all_founded?: boolean | undefined;
|
|
3760
|
-
} |
|
|
3760
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
3761
3761
|
object_type?: import("wowok").ObjectType | undefined;
|
|
3762
3762
|
}, {
|
|
3763
3763
|
identifier: number;
|
|
@@ -3772,7 +3772,7 @@ export declare const CallOutputSchema: z.ZodObject<{
|
|
|
3772
3772
|
local_mark_first?: boolean | undefined;
|
|
3773
3773
|
}[];
|
|
3774
3774
|
check_all_founded?: boolean | undefined;
|
|
3775
|
-
} |
|
|
3775
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
3776
3776
|
name?: string | undefined;
|
|
3777
3777
|
object_type?: import("wowok").ObjectType | undefined;
|
|
3778
3778
|
}>, "many">;
|
|
@@ -3792,7 +3792,7 @@ export declare const CallOutputSchema: z.ZodObject<{
|
|
|
3792
3792
|
local_mark_first?: boolean | undefined;
|
|
3793
3793
|
}[];
|
|
3794
3794
|
check_all_founded?: boolean | undefined;
|
|
3795
|
-
} |
|
|
3795
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
3796
3796
|
object_type?: import("wowok").ObjectType | undefined;
|
|
3797
3797
|
}[];
|
|
3798
3798
|
}, {
|
|
@@ -3810,7 +3810,7 @@ export declare const CallOutputSchema: z.ZodObject<{
|
|
|
3810
3810
|
local_mark_first?: boolean | undefined;
|
|
3811
3811
|
}[];
|
|
3812
3812
|
check_all_founded?: boolean | undefined;
|
|
3813
|
-
} |
|
|
3813
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
3814
3814
|
name?: string | undefined;
|
|
3815
3815
|
object_type?: import("wowok").ObjectType | undefined;
|
|
3816
3816
|
}[];
|
|
@@ -3837,7 +3837,7 @@ export declare const CallOutputSchema: z.ZodObject<{
|
|
|
3837
3837
|
local_mark_first?: boolean | undefined;
|
|
3838
3838
|
}[];
|
|
3839
3839
|
check_all_founded?: boolean | undefined;
|
|
3840
|
-
} |
|
|
3840
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
3841
3841
|
object_type?: import("wowok").ObjectType | undefined;
|
|
3842
3842
|
}[];
|
|
3843
3843
|
}[];
|
|
@@ -3862,7 +3862,7 @@ export declare const CallOutputSchema: z.ZodObject<{
|
|
|
3862
3862
|
local_mark_first?: boolean | undefined;
|
|
3863
3863
|
}[];
|
|
3864
3864
|
check_all_founded?: boolean | undefined;
|
|
3865
|
-
} |
|
|
3865
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
3866
3866
|
name?: string | undefined;
|
|
3867
3867
|
object_type?: import("wowok").ObjectType | undefined;
|
|
3868
3868
|
}[];
|
|
@@ -6488,7 +6488,7 @@ export declare const CallOutputSchema: z.ZodObject<{
|
|
|
6488
6488
|
local_mark_first?: boolean | undefined;
|
|
6489
6489
|
}[];
|
|
6490
6490
|
check_all_founded?: boolean | undefined;
|
|
6491
|
-
} |
|
|
6491
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
6492
6492
|
object_type?: import("wowok").ObjectType | undefined;
|
|
6493
6493
|
}[];
|
|
6494
6494
|
}[];
|
|
@@ -6900,7 +6900,7 @@ export declare const CallOutputSchema: z.ZodObject<{
|
|
|
6900
6900
|
local_mark_first?: boolean | undefined;
|
|
6901
6901
|
}[];
|
|
6902
6902
|
check_all_founded?: boolean | undefined;
|
|
6903
|
-
} |
|
|
6903
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
6904
6904
|
name?: string | undefined;
|
|
6905
6905
|
object_type?: import("wowok").ObjectType | undefined;
|
|
6906
6906
|
}[];
|
|
@@ -674,7 +674,7 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
674
674
|
local_mark_first?: boolean | undefined;
|
|
675
675
|
}[];
|
|
676
676
|
check_all_founded?: boolean | undefined;
|
|
677
|
-
} |
|
|
677
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
678
678
|
object_type?: import("wowok").ObjectType | undefined;
|
|
679
679
|
}, {
|
|
680
680
|
identifier: number;
|
|
@@ -689,7 +689,7 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
689
689
|
local_mark_first?: boolean | undefined;
|
|
690
690
|
}[];
|
|
691
691
|
check_all_founded?: boolean | undefined;
|
|
692
|
-
} |
|
|
692
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
693
693
|
name?: string | undefined;
|
|
694
694
|
object_type?: import("wowok").ObjectType | undefined;
|
|
695
695
|
}>, "many">;
|
|
@@ -709,7 +709,7 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
709
709
|
local_mark_first?: boolean | undefined;
|
|
710
710
|
}[];
|
|
711
711
|
check_all_founded?: boolean | undefined;
|
|
712
|
-
} |
|
|
712
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
713
713
|
object_type?: import("wowok").ObjectType | undefined;
|
|
714
714
|
}[];
|
|
715
715
|
}, {
|
|
@@ -727,7 +727,7 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
727
727
|
local_mark_first?: boolean | undefined;
|
|
728
728
|
}[];
|
|
729
729
|
check_all_founded?: boolean | undefined;
|
|
730
|
-
} |
|
|
730
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
731
731
|
name?: string | undefined;
|
|
732
732
|
object_type?: import("wowok").ObjectType | undefined;
|
|
733
733
|
}[];
|
|
@@ -754,7 +754,7 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
754
754
|
local_mark_first?: boolean | undefined;
|
|
755
755
|
}[];
|
|
756
756
|
check_all_founded?: boolean | undefined;
|
|
757
|
-
} |
|
|
757
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
758
758
|
object_type?: import("wowok").ObjectType | undefined;
|
|
759
759
|
}[];
|
|
760
760
|
}[];
|
|
@@ -779,7 +779,7 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
779
779
|
local_mark_first?: boolean | undefined;
|
|
780
780
|
}[];
|
|
781
781
|
check_all_founded?: boolean | undefined;
|
|
782
|
-
} |
|
|
782
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
783
783
|
name?: string | undefined;
|
|
784
784
|
object_type?: import("wowok").ObjectType | undefined;
|
|
785
785
|
}[];
|
|
@@ -856,7 +856,7 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
856
856
|
local_mark_first?: boolean | undefined;
|
|
857
857
|
}[];
|
|
858
858
|
check_all_founded?: boolean | undefined;
|
|
859
|
-
} |
|
|
859
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
860
860
|
object_type?: import("wowok").ObjectType | undefined;
|
|
861
861
|
}[];
|
|
862
862
|
}[];
|
|
@@ -938,7 +938,7 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
938
938
|
local_mark_first?: boolean | undefined;
|
|
939
939
|
}[];
|
|
940
940
|
check_all_founded?: boolean | undefined;
|
|
941
|
-
} |
|
|
941
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
942
942
|
name?: string | undefined;
|
|
943
943
|
object_type?: import("wowok").ObjectType | undefined;
|
|
944
944
|
}[];
|
|
@@ -925,7 +925,7 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
925
925
|
local_mark_first?: boolean | undefined;
|
|
926
926
|
}[];
|
|
927
927
|
check_all_founded?: boolean | undefined;
|
|
928
|
-
} |
|
|
928
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
929
929
|
object_type?: import("wowok").ObjectType | undefined;
|
|
930
930
|
}, {
|
|
931
931
|
identifier: number;
|
|
@@ -940,7 +940,7 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
940
940
|
local_mark_first?: boolean | undefined;
|
|
941
941
|
}[];
|
|
942
942
|
check_all_founded?: boolean | undefined;
|
|
943
|
-
} |
|
|
943
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
944
944
|
name?: string | undefined;
|
|
945
945
|
object_type?: import("wowok").ObjectType | undefined;
|
|
946
946
|
}>, "many">;
|
|
@@ -960,7 +960,7 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
960
960
|
local_mark_first?: boolean | undefined;
|
|
961
961
|
}[];
|
|
962
962
|
check_all_founded?: boolean | undefined;
|
|
963
|
-
} |
|
|
963
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
964
964
|
object_type?: import("wowok").ObjectType | undefined;
|
|
965
965
|
}[];
|
|
966
966
|
}, {
|
|
@@ -978,7 +978,7 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
978
978
|
local_mark_first?: boolean | undefined;
|
|
979
979
|
}[];
|
|
980
980
|
check_all_founded?: boolean | undefined;
|
|
981
|
-
} |
|
|
981
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
982
982
|
name?: string | undefined;
|
|
983
983
|
object_type?: import("wowok").ObjectType | undefined;
|
|
984
984
|
}[];
|
|
@@ -1005,7 +1005,7 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1005
1005
|
local_mark_first?: boolean | undefined;
|
|
1006
1006
|
}[];
|
|
1007
1007
|
check_all_founded?: boolean | undefined;
|
|
1008
|
-
} |
|
|
1008
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1009
1009
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1010
1010
|
}[];
|
|
1011
1011
|
}[];
|
|
@@ -1030,7 +1030,7 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1030
1030
|
local_mark_first?: boolean | undefined;
|
|
1031
1031
|
}[];
|
|
1032
1032
|
check_all_founded?: boolean | undefined;
|
|
1033
|
-
} |
|
|
1033
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1034
1034
|
name?: string | undefined;
|
|
1035
1035
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1036
1036
|
}[];
|
|
@@ -1129,7 +1129,7 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1129
1129
|
local_mark_first?: boolean | undefined;
|
|
1130
1130
|
}[];
|
|
1131
1131
|
check_all_founded?: boolean | undefined;
|
|
1132
|
-
} |
|
|
1132
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1133
1133
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1134
1134
|
}[];
|
|
1135
1135
|
}[];
|
|
@@ -1233,7 +1233,7 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1233
1233
|
local_mark_first?: boolean | undefined;
|
|
1234
1234
|
}[];
|
|
1235
1235
|
check_all_founded?: boolean | undefined;
|
|
1236
|
-
} |
|
|
1236
|
+
} | string[] | boolean[] | number[] | number[][] | undefined;
|
|
1237
1237
|
name?: string | undefined;
|
|
1238
1238
|
object_type?: import("wowok").ObjectType | undefined;
|
|
1239
1239
|
}[];
|