wowok_agent 2.1.17 → 2.1.18
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.js
CHANGED
|
@@ -714,12 +714,36 @@ async function handleMessengerOperation(args) {
|
|
|
714
714
|
}
|
|
715
715
|
case "send_message": {
|
|
716
716
|
const sendResult = await send_message(validated.from, validated.to, validated.content, validated.options);
|
|
717
|
-
|
|
717
|
+
// Filter out leafHash from merkleData to match schema
|
|
718
|
+
const filteredResult = {
|
|
719
|
+
...sendResult,
|
|
720
|
+
merkleData: sendResult.merkleData ? {
|
|
721
|
+
leafIndex: sendResult.merkleData.leafIndex,
|
|
722
|
+
prevRoot: sendResult.merkleData.prevRoot,
|
|
723
|
+
newRoot: sendResult.merkleData.newRoot,
|
|
724
|
+
serverSignature: sendResult.merkleData.serverSignature,
|
|
725
|
+
serverTimestamp: sendResult.merkleData.serverTimestamp,
|
|
726
|
+
serverPublicKey: sendResult.merkleData.serverPublicKey,
|
|
727
|
+
} : undefined,
|
|
728
|
+
};
|
|
729
|
+
result = { operation: "send_message", result: filteredResult };
|
|
718
730
|
break;
|
|
719
731
|
}
|
|
720
732
|
case "send_file": {
|
|
721
733
|
const sendResult = await send_file(validated.from, validated.to, validated.filePath, validated.options);
|
|
722
|
-
|
|
734
|
+
// Filter out leafHash from merkleData to match schema
|
|
735
|
+
const filteredResult = {
|
|
736
|
+
...sendResult,
|
|
737
|
+
merkleData: sendResult.merkleData ? {
|
|
738
|
+
leafIndex: sendResult.merkleData.leafIndex,
|
|
739
|
+
prevRoot: sendResult.merkleData.prevRoot,
|
|
740
|
+
newRoot: sendResult.merkleData.newRoot,
|
|
741
|
+
serverSignature: sendResult.merkleData.serverSignature,
|
|
742
|
+
serverTimestamp: sendResult.merkleData.serverTimestamp,
|
|
743
|
+
serverPublicKey: sendResult.merkleData.serverPublicKey,
|
|
744
|
+
} : undefined,
|
|
745
|
+
};
|
|
746
|
+
result = { operation: "send_file", result: filteredResult };
|
|
723
747
|
break;
|
|
724
748
|
}
|
|
725
749
|
case "watch_messages": {
|
|
@@ -5894,13 +5894,13 @@ export declare const AccountDataSchema: z.ZodObject<{
|
|
|
5894
5894
|
suspended: z.ZodOptional<z.ZodBoolean>;
|
|
5895
5895
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
5896
5896
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
5897
|
-
m: z.ZodOptional<z.ZodString
|
|
5897
|
+
m: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5898
5898
|
}, "strip", z.ZodTypeAny, {
|
|
5899
5899
|
address: string;
|
|
5900
5900
|
name?: string | undefined;
|
|
5901
5901
|
createdAt?: number | undefined;
|
|
5902
5902
|
updatedAt?: number | undefined;
|
|
5903
|
-
m?: string | undefined;
|
|
5903
|
+
m?: string | null | undefined;
|
|
5904
5904
|
suspended?: boolean | undefined;
|
|
5905
5905
|
pubkey?: string | undefined;
|
|
5906
5906
|
secret?: string | undefined;
|
|
@@ -5909,7 +5909,7 @@ export declare const AccountDataSchema: z.ZodObject<{
|
|
|
5909
5909
|
name?: string | undefined;
|
|
5910
5910
|
createdAt?: number | undefined;
|
|
5911
5911
|
updatedAt?: number | undefined;
|
|
5912
|
-
m?: string | undefined;
|
|
5912
|
+
m?: string | null | undefined;
|
|
5913
5913
|
suspended?: boolean | undefined;
|
|
5914
5914
|
pubkey?: string | undefined;
|
|
5915
5915
|
secret?: string | undefined;
|
|
@@ -5923,13 +5923,13 @@ export declare const QueryAccountListResultSchema: z.ZodObject<{
|
|
|
5923
5923
|
suspended: z.ZodOptional<z.ZodBoolean>;
|
|
5924
5924
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
5925
5925
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
5926
|
-
m: z.ZodOptional<z.ZodString
|
|
5926
|
+
m: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5927
5927
|
}, "strip", z.ZodTypeAny, {
|
|
5928
5928
|
address: string;
|
|
5929
5929
|
name?: string | undefined;
|
|
5930
5930
|
createdAt?: number | undefined;
|
|
5931
5931
|
updatedAt?: number | undefined;
|
|
5932
|
-
m?: string | undefined;
|
|
5932
|
+
m?: string | null | undefined;
|
|
5933
5933
|
suspended?: boolean | undefined;
|
|
5934
5934
|
pubkey?: string | undefined;
|
|
5935
5935
|
secret?: string | undefined;
|
|
@@ -5938,7 +5938,7 @@ export declare const QueryAccountListResultSchema: z.ZodObject<{
|
|
|
5938
5938
|
name?: string | undefined;
|
|
5939
5939
|
createdAt?: number | undefined;
|
|
5940
5940
|
updatedAt?: number | undefined;
|
|
5941
|
-
m?: string | undefined;
|
|
5941
|
+
m?: string | null | undefined;
|
|
5942
5942
|
suspended?: boolean | undefined;
|
|
5943
5943
|
pubkey?: string | undefined;
|
|
5944
5944
|
secret?: string | undefined;
|
|
@@ -5949,7 +5949,7 @@ export declare const QueryAccountListResultSchema: z.ZodObject<{
|
|
|
5949
5949
|
name?: string | undefined;
|
|
5950
5950
|
createdAt?: number | undefined;
|
|
5951
5951
|
updatedAt?: number | undefined;
|
|
5952
|
-
m?: string | undefined;
|
|
5952
|
+
m?: string | null | undefined;
|
|
5953
5953
|
suspended?: boolean | undefined;
|
|
5954
5954
|
pubkey?: string | undefined;
|
|
5955
5955
|
secret?: string | undefined;
|
|
@@ -5960,7 +5960,7 @@ export declare const QueryAccountListResultSchema: z.ZodObject<{
|
|
|
5960
5960
|
name?: string | undefined;
|
|
5961
5961
|
createdAt?: number | undefined;
|
|
5962
5962
|
updatedAt?: number | undefined;
|
|
5963
|
-
m?: string | undefined;
|
|
5963
|
+
m?: string | null | undefined;
|
|
5964
5964
|
suspended?: boolean | undefined;
|
|
5965
5965
|
pubkey?: string | undefined;
|
|
5966
5966
|
secret?: string | undefined;
|
|
@@ -836,7 +836,7 @@ export const AccountDataSchema = z.object({
|
|
|
836
836
|
suspended: z.boolean().optional().describe("Whether account is suspended"),
|
|
837
837
|
createdAt: z.number().optional().describe("Timestamp when account was created"),
|
|
838
838
|
updatedAt: z.number().optional().describe("Timestamp when account was last updated"),
|
|
839
|
-
m: z.string().optional().describe("Messenger name, indicates this account has messenger enabled"),
|
|
839
|
+
m: z.string().nullable().optional().describe("Messenger name, indicates this account has messenger enabled"),
|
|
840
840
|
}).describe("Account data");
|
|
841
841
|
// Define QueryAccountListResult schema
|
|
842
842
|
export const QueryAccountListResultSchema = z.object({
|
|
@@ -686,8 +686,8 @@ export declare const ListOperationResponseSchema: z.ZodObject<{
|
|
|
686
686
|
modifiedCount: z.ZodNumber;
|
|
687
687
|
currentCount: z.ZodNumber;
|
|
688
688
|
maxCount: z.ZodNumber;
|
|
689
|
-
invalidAddresses: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
690
|
-
existResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
689
|
+
invalidAddresses: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
690
|
+
existResults: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
691
691
|
address: z.ZodString;
|
|
692
692
|
exists: z.ZodBoolean;
|
|
693
693
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -696,10 +696,10 @@ export declare const ListOperationResponseSchema: z.ZodObject<{
|
|
|
696
696
|
}, {
|
|
697
697
|
address: string;
|
|
698
698
|
exists: boolean;
|
|
699
|
-
}>, "many"
|
|
700
|
-
message: z.ZodOptional<z.ZodString
|
|
701
|
-
currentList: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
702
|
-
currentGuardList: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
699
|
+
}>, "many">>>;
|
|
700
|
+
message: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
701
|
+
currentList: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
702
|
+
currentGuardList: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
703
703
|
guardAddress: z.ZodString;
|
|
704
704
|
passportValiditySeconds: z.ZodNumber;
|
|
705
705
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -708,41 +708,41 @@ export declare const ListOperationResponseSchema: z.ZodObject<{
|
|
|
708
708
|
}, {
|
|
709
709
|
guardAddress: string;
|
|
710
710
|
passportValiditySeconds: number;
|
|
711
|
-
}>, "many"
|
|
711
|
+
}>, "many">>>;
|
|
712
712
|
}, "strip", z.ZodTypeAny, {
|
|
713
713
|
success: boolean;
|
|
714
714
|
operation: string;
|
|
715
715
|
modifiedCount: number;
|
|
716
716
|
currentCount: number;
|
|
717
717
|
maxCount: number;
|
|
718
|
-
message?: string | undefined;
|
|
719
|
-
invalidAddresses?: string[] | undefined;
|
|
718
|
+
message?: string | null | undefined;
|
|
719
|
+
invalidAddresses?: string[] | null | undefined;
|
|
720
720
|
existResults?: {
|
|
721
721
|
address: string;
|
|
722
722
|
exists: boolean;
|
|
723
|
-
}[] | undefined;
|
|
724
|
-
currentList?: string[] | undefined;
|
|
723
|
+
}[] | null | undefined;
|
|
724
|
+
currentList?: string[] | null | undefined;
|
|
725
725
|
currentGuardList?: {
|
|
726
726
|
guardAddress: string;
|
|
727
727
|
passportValiditySeconds: number;
|
|
728
|
-
}[] | undefined;
|
|
728
|
+
}[] | null | undefined;
|
|
729
729
|
}, {
|
|
730
730
|
success: boolean;
|
|
731
731
|
operation: string;
|
|
732
732
|
modifiedCount: number;
|
|
733
733
|
currentCount: number;
|
|
734
734
|
maxCount: number;
|
|
735
|
-
message?: string | undefined;
|
|
736
|
-
invalidAddresses?: string[] | undefined;
|
|
735
|
+
message?: string | null | undefined;
|
|
736
|
+
invalidAddresses?: string[] | null | undefined;
|
|
737
737
|
existResults?: {
|
|
738
738
|
address: string;
|
|
739
739
|
exists: boolean;
|
|
740
|
-
}[] | undefined;
|
|
741
|
-
currentList?: string[] | undefined;
|
|
740
|
+
}[] | null | undefined;
|
|
741
|
+
currentList?: string[] | null | undefined;
|
|
742
742
|
currentGuardList?: {
|
|
743
743
|
guardAddress: string;
|
|
744
744
|
passportValiditySeconds: number;
|
|
745
|
-
}[] | undefined;
|
|
745
|
+
}[] | null | undefined;
|
|
746
746
|
}>;
|
|
747
747
|
export declare const BlacklistOperationSchema: z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
|
|
748
748
|
op: z.ZodLiteral<"add">;
|
|
@@ -2974,8 +2974,8 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
2974
2974
|
modifiedCount: z.ZodNumber;
|
|
2975
2975
|
currentCount: z.ZodNumber;
|
|
2976
2976
|
maxCount: z.ZodNumber;
|
|
2977
|
-
invalidAddresses: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
2978
|
-
existResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2977
|
+
invalidAddresses: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2978
|
+
existResults: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2979
2979
|
address: z.ZodString;
|
|
2980
2980
|
exists: z.ZodBoolean;
|
|
2981
2981
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2984,10 +2984,10 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
2984
2984
|
}, {
|
|
2985
2985
|
address: string;
|
|
2986
2986
|
exists: boolean;
|
|
2987
|
-
}>, "many"
|
|
2988
|
-
message: z.ZodOptional<z.ZodString
|
|
2989
|
-
currentList: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
2990
|
-
currentGuardList: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2987
|
+
}>, "many">>>;
|
|
2988
|
+
message: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2989
|
+
currentList: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
2990
|
+
currentGuardList: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2991
2991
|
guardAddress: z.ZodString;
|
|
2992
2992
|
passportValiditySeconds: z.ZodNumber;
|
|
2993
2993
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2996,41 +2996,41 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
2996
2996
|
}, {
|
|
2997
2997
|
guardAddress: string;
|
|
2998
2998
|
passportValiditySeconds: number;
|
|
2999
|
-
}>, "many"
|
|
2999
|
+
}>, "many">>>;
|
|
3000
3000
|
}, "strip", z.ZodTypeAny, {
|
|
3001
3001
|
success: boolean;
|
|
3002
3002
|
operation: string;
|
|
3003
3003
|
modifiedCount: number;
|
|
3004
3004
|
currentCount: number;
|
|
3005
3005
|
maxCount: number;
|
|
3006
|
-
message?: string | undefined;
|
|
3007
|
-
invalidAddresses?: string[] | undefined;
|
|
3006
|
+
message?: string | null | undefined;
|
|
3007
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3008
3008
|
existResults?: {
|
|
3009
3009
|
address: string;
|
|
3010
3010
|
exists: boolean;
|
|
3011
|
-
}[] | undefined;
|
|
3012
|
-
currentList?: string[] | undefined;
|
|
3011
|
+
}[] | null | undefined;
|
|
3012
|
+
currentList?: string[] | null | undefined;
|
|
3013
3013
|
currentGuardList?: {
|
|
3014
3014
|
guardAddress: string;
|
|
3015
3015
|
passportValiditySeconds: number;
|
|
3016
|
-
}[] | undefined;
|
|
3016
|
+
}[] | null | undefined;
|
|
3017
3017
|
}, {
|
|
3018
3018
|
success: boolean;
|
|
3019
3019
|
operation: string;
|
|
3020
3020
|
modifiedCount: number;
|
|
3021
3021
|
currentCount: number;
|
|
3022
3022
|
maxCount: number;
|
|
3023
|
-
message?: string | undefined;
|
|
3024
|
-
invalidAddresses?: string[] | undefined;
|
|
3023
|
+
message?: string | null | undefined;
|
|
3024
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3025
3025
|
existResults?: {
|
|
3026
3026
|
address: string;
|
|
3027
3027
|
exists: boolean;
|
|
3028
|
-
}[] | undefined;
|
|
3029
|
-
currentList?: string[] | undefined;
|
|
3028
|
+
}[] | null | undefined;
|
|
3029
|
+
currentList?: string[] | null | undefined;
|
|
3030
3030
|
currentGuardList?: {
|
|
3031
3031
|
guardAddress: string;
|
|
3032
3032
|
passportValiditySeconds: number;
|
|
3033
|
-
}[] | undefined;
|
|
3033
|
+
}[] | null | undefined;
|
|
3034
3034
|
}>, z.ZodArray<z.ZodString, "many">]>;
|
|
3035
3035
|
}, "strip", z.ZodTypeAny, {
|
|
3036
3036
|
result: string[] | {
|
|
@@ -3039,17 +3039,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3039
3039
|
modifiedCount: number;
|
|
3040
3040
|
currentCount: number;
|
|
3041
3041
|
maxCount: number;
|
|
3042
|
-
message?: string | undefined;
|
|
3043
|
-
invalidAddresses?: string[] | undefined;
|
|
3042
|
+
message?: string | null | undefined;
|
|
3043
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3044
3044
|
existResults?: {
|
|
3045
3045
|
address: string;
|
|
3046
3046
|
exists: boolean;
|
|
3047
|
-
}[] | undefined;
|
|
3048
|
-
currentList?: string[] | undefined;
|
|
3047
|
+
}[] | null | undefined;
|
|
3048
|
+
currentList?: string[] | null | undefined;
|
|
3049
3049
|
currentGuardList?: {
|
|
3050
3050
|
guardAddress: string;
|
|
3051
3051
|
passportValiditySeconds: number;
|
|
3052
|
-
}[] | undefined;
|
|
3052
|
+
}[] | null | undefined;
|
|
3053
3053
|
};
|
|
3054
3054
|
op: "get" | "add" | "remove" | "clear" | "exist";
|
|
3055
3055
|
operation: "blacklist";
|
|
@@ -3060,17 +3060,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3060
3060
|
modifiedCount: number;
|
|
3061
3061
|
currentCount: number;
|
|
3062
3062
|
maxCount: number;
|
|
3063
|
-
message?: string | undefined;
|
|
3064
|
-
invalidAddresses?: string[] | undefined;
|
|
3063
|
+
message?: string | null | undefined;
|
|
3064
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3065
3065
|
existResults?: {
|
|
3066
3066
|
address: string;
|
|
3067
3067
|
exists: boolean;
|
|
3068
|
-
}[] | undefined;
|
|
3069
|
-
currentList?: string[] | undefined;
|
|
3068
|
+
}[] | null | undefined;
|
|
3069
|
+
currentList?: string[] | null | undefined;
|
|
3070
3070
|
currentGuardList?: {
|
|
3071
3071
|
guardAddress: string;
|
|
3072
3072
|
passportValiditySeconds: number;
|
|
3073
|
-
}[] | undefined;
|
|
3073
|
+
}[] | null | undefined;
|
|
3074
3074
|
};
|
|
3075
3075
|
op: "get" | "add" | "remove" | "clear" | "exist";
|
|
3076
3076
|
operation: "blacklist";
|
|
@@ -3083,8 +3083,8 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3083
3083
|
modifiedCount: z.ZodNumber;
|
|
3084
3084
|
currentCount: z.ZodNumber;
|
|
3085
3085
|
maxCount: z.ZodNumber;
|
|
3086
|
-
invalidAddresses: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
3087
|
-
existResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3086
|
+
invalidAddresses: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3087
|
+
existResults: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3088
3088
|
address: z.ZodString;
|
|
3089
3089
|
exists: z.ZodBoolean;
|
|
3090
3090
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3093,10 +3093,10 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3093
3093
|
}, {
|
|
3094
3094
|
address: string;
|
|
3095
3095
|
exists: boolean;
|
|
3096
|
-
}>, "many"
|
|
3097
|
-
message: z.ZodOptional<z.ZodString
|
|
3098
|
-
currentList: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
3099
|
-
currentGuardList: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3096
|
+
}>, "many">>>;
|
|
3097
|
+
message: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3098
|
+
currentList: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3099
|
+
currentGuardList: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3100
3100
|
guardAddress: z.ZodString;
|
|
3101
3101
|
passportValiditySeconds: z.ZodNumber;
|
|
3102
3102
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3105,41 +3105,41 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3105
3105
|
}, {
|
|
3106
3106
|
guardAddress: string;
|
|
3107
3107
|
passportValiditySeconds: number;
|
|
3108
|
-
}>, "many"
|
|
3108
|
+
}>, "many">>>;
|
|
3109
3109
|
}, "strip", z.ZodTypeAny, {
|
|
3110
3110
|
success: boolean;
|
|
3111
3111
|
operation: string;
|
|
3112
3112
|
modifiedCount: number;
|
|
3113
3113
|
currentCount: number;
|
|
3114
3114
|
maxCount: number;
|
|
3115
|
-
message?: string | undefined;
|
|
3116
|
-
invalidAddresses?: string[] | undefined;
|
|
3115
|
+
message?: string | null | undefined;
|
|
3116
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3117
3117
|
existResults?: {
|
|
3118
3118
|
address: string;
|
|
3119
3119
|
exists: boolean;
|
|
3120
|
-
}[] | undefined;
|
|
3121
|
-
currentList?: string[] | undefined;
|
|
3120
|
+
}[] | null | undefined;
|
|
3121
|
+
currentList?: string[] | null | undefined;
|
|
3122
3122
|
currentGuardList?: {
|
|
3123
3123
|
guardAddress: string;
|
|
3124
3124
|
passportValiditySeconds: number;
|
|
3125
|
-
}[] | undefined;
|
|
3125
|
+
}[] | null | undefined;
|
|
3126
3126
|
}, {
|
|
3127
3127
|
success: boolean;
|
|
3128
3128
|
operation: string;
|
|
3129
3129
|
modifiedCount: number;
|
|
3130
3130
|
currentCount: number;
|
|
3131
3131
|
maxCount: number;
|
|
3132
|
-
message?: string | undefined;
|
|
3133
|
-
invalidAddresses?: string[] | undefined;
|
|
3132
|
+
message?: string | null | undefined;
|
|
3133
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3134
3134
|
existResults?: {
|
|
3135
3135
|
address: string;
|
|
3136
3136
|
exists: boolean;
|
|
3137
|
-
}[] | undefined;
|
|
3138
|
-
currentList?: string[] | undefined;
|
|
3137
|
+
}[] | null | undefined;
|
|
3138
|
+
currentList?: string[] | null | undefined;
|
|
3139
3139
|
currentGuardList?: {
|
|
3140
3140
|
guardAddress: string;
|
|
3141
3141
|
passportValiditySeconds: number;
|
|
3142
|
-
}[] | undefined;
|
|
3142
|
+
}[] | null | undefined;
|
|
3143
3143
|
}>, z.ZodArray<z.ZodString, "many">]>;
|
|
3144
3144
|
}, "strip", z.ZodTypeAny, {
|
|
3145
3145
|
result: string[] | {
|
|
@@ -3148,17 +3148,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3148
3148
|
modifiedCount: number;
|
|
3149
3149
|
currentCount: number;
|
|
3150
3150
|
maxCount: number;
|
|
3151
|
-
message?: string | undefined;
|
|
3152
|
-
invalidAddresses?: string[] | undefined;
|
|
3151
|
+
message?: string | null | undefined;
|
|
3152
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3153
3153
|
existResults?: {
|
|
3154
3154
|
address: string;
|
|
3155
3155
|
exists: boolean;
|
|
3156
|
-
}[] | undefined;
|
|
3157
|
-
currentList?: string[] | undefined;
|
|
3156
|
+
}[] | null | undefined;
|
|
3157
|
+
currentList?: string[] | null | undefined;
|
|
3158
3158
|
currentGuardList?: {
|
|
3159
3159
|
guardAddress: string;
|
|
3160
3160
|
passportValiditySeconds: number;
|
|
3161
|
-
}[] | undefined;
|
|
3161
|
+
}[] | null | undefined;
|
|
3162
3162
|
};
|
|
3163
3163
|
op: "get" | "add" | "remove" | "clear" | "exist";
|
|
3164
3164
|
operation: "friendslist";
|
|
@@ -3169,17 +3169,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3169
3169
|
modifiedCount: number;
|
|
3170
3170
|
currentCount: number;
|
|
3171
3171
|
maxCount: number;
|
|
3172
|
-
message?: string | undefined;
|
|
3173
|
-
invalidAddresses?: string[] | undefined;
|
|
3172
|
+
message?: string | null | undefined;
|
|
3173
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3174
3174
|
existResults?: {
|
|
3175
3175
|
address: string;
|
|
3176
3176
|
exists: boolean;
|
|
3177
|
-
}[] | undefined;
|
|
3178
|
-
currentList?: string[] | undefined;
|
|
3177
|
+
}[] | null | undefined;
|
|
3178
|
+
currentList?: string[] | null | undefined;
|
|
3179
3179
|
currentGuardList?: {
|
|
3180
3180
|
guardAddress: string;
|
|
3181
3181
|
passportValiditySeconds: number;
|
|
3182
|
-
}[] | undefined;
|
|
3182
|
+
}[] | null | undefined;
|
|
3183
3183
|
};
|
|
3184
3184
|
op: "get" | "add" | "remove" | "clear" | "exist";
|
|
3185
3185
|
operation: "friendslist";
|
|
@@ -3192,8 +3192,8 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3192
3192
|
modifiedCount: z.ZodNumber;
|
|
3193
3193
|
currentCount: z.ZodNumber;
|
|
3194
3194
|
maxCount: z.ZodNumber;
|
|
3195
|
-
invalidAddresses: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
3196
|
-
existResults: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3195
|
+
invalidAddresses: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3196
|
+
existResults: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3197
3197
|
address: z.ZodString;
|
|
3198
3198
|
exists: z.ZodBoolean;
|
|
3199
3199
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3202,10 +3202,10 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3202
3202
|
}, {
|
|
3203
3203
|
address: string;
|
|
3204
3204
|
exists: boolean;
|
|
3205
|
-
}>, "many"
|
|
3206
|
-
message: z.ZodOptional<z.ZodString
|
|
3207
|
-
currentList: z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
3208
|
-
currentGuardList: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3205
|
+
}>, "many">>>;
|
|
3206
|
+
message: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3207
|
+
currentList: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3208
|
+
currentGuardList: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3209
3209
|
guardAddress: z.ZodString;
|
|
3210
3210
|
passportValiditySeconds: z.ZodNumber;
|
|
3211
3211
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3214,41 +3214,41 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3214
3214
|
}, {
|
|
3215
3215
|
guardAddress: string;
|
|
3216
3216
|
passportValiditySeconds: number;
|
|
3217
|
-
}>, "many"
|
|
3217
|
+
}>, "many">>>;
|
|
3218
3218
|
}, "strip", z.ZodTypeAny, {
|
|
3219
3219
|
success: boolean;
|
|
3220
3220
|
operation: string;
|
|
3221
3221
|
modifiedCount: number;
|
|
3222
3222
|
currentCount: number;
|
|
3223
3223
|
maxCount: number;
|
|
3224
|
-
message?: string | undefined;
|
|
3225
|
-
invalidAddresses?: string[] | undefined;
|
|
3224
|
+
message?: string | null | undefined;
|
|
3225
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3226
3226
|
existResults?: {
|
|
3227
3227
|
address: string;
|
|
3228
3228
|
exists: boolean;
|
|
3229
|
-
}[] | undefined;
|
|
3230
|
-
currentList?: string[] | undefined;
|
|
3229
|
+
}[] | null | undefined;
|
|
3230
|
+
currentList?: string[] | null | undefined;
|
|
3231
3231
|
currentGuardList?: {
|
|
3232
3232
|
guardAddress: string;
|
|
3233
3233
|
passportValiditySeconds: number;
|
|
3234
|
-
}[] | undefined;
|
|
3234
|
+
}[] | null | undefined;
|
|
3235
3235
|
}, {
|
|
3236
3236
|
success: boolean;
|
|
3237
3237
|
operation: string;
|
|
3238
3238
|
modifiedCount: number;
|
|
3239
3239
|
currentCount: number;
|
|
3240
3240
|
maxCount: number;
|
|
3241
|
-
message?: string | undefined;
|
|
3242
|
-
invalidAddresses?: string[] | undefined;
|
|
3241
|
+
message?: string | null | undefined;
|
|
3242
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3243
3243
|
existResults?: {
|
|
3244
3244
|
address: string;
|
|
3245
3245
|
exists: boolean;
|
|
3246
|
-
}[] | undefined;
|
|
3247
|
-
currentList?: string[] | undefined;
|
|
3246
|
+
}[] | null | undefined;
|
|
3247
|
+
currentList?: string[] | null | undefined;
|
|
3248
3248
|
currentGuardList?: {
|
|
3249
3249
|
guardAddress: string;
|
|
3250
3250
|
passportValiditySeconds: number;
|
|
3251
|
-
}[] | undefined;
|
|
3251
|
+
}[] | null | undefined;
|
|
3252
3252
|
}>;
|
|
3253
3253
|
}, "strip", z.ZodTypeAny, {
|
|
3254
3254
|
result: {
|
|
@@ -3257,17 +3257,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3257
3257
|
modifiedCount: number;
|
|
3258
3258
|
currentCount: number;
|
|
3259
3259
|
maxCount: number;
|
|
3260
|
-
message?: string | undefined;
|
|
3261
|
-
invalidAddresses?: string[] | undefined;
|
|
3260
|
+
message?: string | null | undefined;
|
|
3261
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3262
3262
|
existResults?: {
|
|
3263
3263
|
address: string;
|
|
3264
3264
|
exists: boolean;
|
|
3265
|
-
}[] | undefined;
|
|
3266
|
-
currentList?: string[] | undefined;
|
|
3265
|
+
}[] | null | undefined;
|
|
3266
|
+
currentList?: string[] | null | undefined;
|
|
3267
3267
|
currentGuardList?: {
|
|
3268
3268
|
guardAddress: string;
|
|
3269
3269
|
passportValiditySeconds: number;
|
|
3270
|
-
}[] | undefined;
|
|
3270
|
+
}[] | null | undefined;
|
|
3271
3271
|
};
|
|
3272
3272
|
op: "get" | "add" | "remove";
|
|
3273
3273
|
operation: "guardlist";
|
|
@@ -3278,17 +3278,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3278
3278
|
modifiedCount: number;
|
|
3279
3279
|
currentCount: number;
|
|
3280
3280
|
maxCount: number;
|
|
3281
|
-
message?: string | undefined;
|
|
3282
|
-
invalidAddresses?: string[] | undefined;
|
|
3281
|
+
message?: string | null | undefined;
|
|
3282
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3283
3283
|
existResults?: {
|
|
3284
3284
|
address: string;
|
|
3285
3285
|
exists: boolean;
|
|
3286
|
-
}[] | undefined;
|
|
3287
|
-
currentList?: string[] | undefined;
|
|
3286
|
+
}[] | null | undefined;
|
|
3287
|
+
currentList?: string[] | null | undefined;
|
|
3288
3288
|
currentGuardList?: {
|
|
3289
3289
|
guardAddress: string;
|
|
3290
3290
|
passportValiditySeconds: number;
|
|
3291
|
-
}[] | undefined;
|
|
3291
|
+
}[] | null | undefined;
|
|
3292
3292
|
};
|
|
3293
3293
|
op: "get" | "add" | "remove";
|
|
3294
3294
|
operation: "guardlist";
|
|
@@ -3416,17 +3416,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3416
3416
|
modifiedCount: number;
|
|
3417
3417
|
currentCount: number;
|
|
3418
3418
|
maxCount: number;
|
|
3419
|
-
message?: string | undefined;
|
|
3420
|
-
invalidAddresses?: string[] | undefined;
|
|
3419
|
+
message?: string | null | undefined;
|
|
3420
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3421
3421
|
existResults?: {
|
|
3422
3422
|
address: string;
|
|
3423
3423
|
exists: boolean;
|
|
3424
|
-
}[] | undefined;
|
|
3425
|
-
currentList?: string[] | undefined;
|
|
3424
|
+
}[] | null | undefined;
|
|
3425
|
+
currentList?: string[] | null | undefined;
|
|
3426
3426
|
currentGuardList?: {
|
|
3427
3427
|
guardAddress: string;
|
|
3428
3428
|
passportValiditySeconds: number;
|
|
3429
|
-
}[] | undefined;
|
|
3429
|
+
}[] | null | undefined;
|
|
3430
3430
|
};
|
|
3431
3431
|
op: "get" | "add" | "remove" | "clear" | "exist";
|
|
3432
3432
|
operation: "blacklist";
|
|
@@ -3437,17 +3437,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3437
3437
|
modifiedCount: number;
|
|
3438
3438
|
currentCount: number;
|
|
3439
3439
|
maxCount: number;
|
|
3440
|
-
message?: string | undefined;
|
|
3441
|
-
invalidAddresses?: string[] | undefined;
|
|
3440
|
+
message?: string | null | undefined;
|
|
3441
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3442
3442
|
existResults?: {
|
|
3443
3443
|
address: string;
|
|
3444
3444
|
exists: boolean;
|
|
3445
|
-
}[] | undefined;
|
|
3446
|
-
currentList?: string[] | undefined;
|
|
3445
|
+
}[] | null | undefined;
|
|
3446
|
+
currentList?: string[] | null | undefined;
|
|
3447
3447
|
currentGuardList?: {
|
|
3448
3448
|
guardAddress: string;
|
|
3449
3449
|
passportValiditySeconds: number;
|
|
3450
|
-
}[] | undefined;
|
|
3450
|
+
}[] | null | undefined;
|
|
3451
3451
|
};
|
|
3452
3452
|
op: "get" | "add" | "remove" | "clear" | "exist";
|
|
3453
3453
|
operation: "friendslist";
|
|
@@ -3458,17 +3458,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3458
3458
|
modifiedCount: number;
|
|
3459
3459
|
currentCount: number;
|
|
3460
3460
|
maxCount: number;
|
|
3461
|
-
message?: string | undefined;
|
|
3462
|
-
invalidAddresses?: string[] | undefined;
|
|
3461
|
+
message?: string | null | undefined;
|
|
3462
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3463
3463
|
existResults?: {
|
|
3464
3464
|
address: string;
|
|
3465
3465
|
exists: boolean;
|
|
3466
|
-
}[] | undefined;
|
|
3467
|
-
currentList?: string[] | undefined;
|
|
3466
|
+
}[] | null | undefined;
|
|
3467
|
+
currentList?: string[] | null | undefined;
|
|
3468
3468
|
currentGuardList?: {
|
|
3469
3469
|
guardAddress: string;
|
|
3470
3470
|
passportValiditySeconds: number;
|
|
3471
|
-
}[] | undefined;
|
|
3471
|
+
}[] | null | undefined;
|
|
3472
3472
|
};
|
|
3473
3473
|
op: "get" | "add" | "remove";
|
|
3474
3474
|
operation: "guardlist";
|
|
@@ -3596,17 +3596,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3596
3596
|
modifiedCount: number;
|
|
3597
3597
|
currentCount: number;
|
|
3598
3598
|
maxCount: number;
|
|
3599
|
-
message?: string | undefined;
|
|
3600
|
-
invalidAddresses?: string[] | undefined;
|
|
3599
|
+
message?: string | null | undefined;
|
|
3600
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3601
3601
|
existResults?: {
|
|
3602
3602
|
address: string;
|
|
3603
3603
|
exists: boolean;
|
|
3604
|
-
}[] | undefined;
|
|
3605
|
-
currentList?: string[] | undefined;
|
|
3604
|
+
}[] | null | undefined;
|
|
3605
|
+
currentList?: string[] | null | undefined;
|
|
3606
3606
|
currentGuardList?: {
|
|
3607
3607
|
guardAddress: string;
|
|
3608
3608
|
passportValiditySeconds: number;
|
|
3609
|
-
}[] | undefined;
|
|
3609
|
+
}[] | null | undefined;
|
|
3610
3610
|
};
|
|
3611
3611
|
op: "get" | "add" | "remove" | "clear" | "exist";
|
|
3612
3612
|
operation: "blacklist";
|
|
@@ -3617,17 +3617,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3617
3617
|
modifiedCount: number;
|
|
3618
3618
|
currentCount: number;
|
|
3619
3619
|
maxCount: number;
|
|
3620
|
-
message?: string | undefined;
|
|
3621
|
-
invalidAddresses?: string[] | undefined;
|
|
3620
|
+
message?: string | null | undefined;
|
|
3621
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3622
3622
|
existResults?: {
|
|
3623
3623
|
address: string;
|
|
3624
3624
|
exists: boolean;
|
|
3625
|
-
}[] | undefined;
|
|
3626
|
-
currentList?: string[] | undefined;
|
|
3625
|
+
}[] | null | undefined;
|
|
3626
|
+
currentList?: string[] | null | undefined;
|
|
3627
3627
|
currentGuardList?: {
|
|
3628
3628
|
guardAddress: string;
|
|
3629
3629
|
passportValiditySeconds: number;
|
|
3630
|
-
}[] | undefined;
|
|
3630
|
+
}[] | null | undefined;
|
|
3631
3631
|
};
|
|
3632
3632
|
op: "get" | "add" | "remove" | "clear" | "exist";
|
|
3633
3633
|
operation: "friendslist";
|
|
@@ -3638,17 +3638,17 @@ export declare const MessengerOperationOutputSchema: z.ZodObject<{
|
|
|
3638
3638
|
modifiedCount: number;
|
|
3639
3639
|
currentCount: number;
|
|
3640
3640
|
maxCount: number;
|
|
3641
|
-
message?: string | undefined;
|
|
3642
|
-
invalidAddresses?: string[] | undefined;
|
|
3641
|
+
message?: string | null | undefined;
|
|
3642
|
+
invalidAddresses?: string[] | null | undefined;
|
|
3643
3643
|
existResults?: {
|
|
3644
3644
|
address: string;
|
|
3645
3645
|
exists: boolean;
|
|
3646
|
-
}[] | undefined;
|
|
3647
|
-
currentList?: string[] | undefined;
|
|
3646
|
+
}[] | null | undefined;
|
|
3647
|
+
currentList?: string[] | null | undefined;
|
|
3648
3648
|
currentGuardList?: {
|
|
3649
3649
|
guardAddress: string;
|
|
3650
3650
|
passportValiditySeconds: number;
|
|
3651
|
-
}[] | undefined;
|
|
3651
|
+
}[] | null | undefined;
|
|
3652
3652
|
};
|
|
3653
3653
|
op: "get" | "add" | "remove";
|
|
3654
3654
|
operation: "guardlist";
|
|
@@ -202,11 +202,11 @@ export const ListOperationResponseSchema = z.object({
|
|
|
202
202
|
modifiedCount: z.number().describe("Number of items modified"),
|
|
203
203
|
currentCount: z.number().describe("Current list size"),
|
|
204
204
|
maxCount: z.number().describe("Maximum list size"),
|
|
205
|
-
invalidAddresses: z.array(z.string()).optional().describe("Invalid addresses"),
|
|
206
|
-
existResults: z.array(AddressExistenceSchema).optional().describe("Existence check results"),
|
|
207
|
-
message: z.string().optional().describe("Operation message"),
|
|
208
|
-
currentList: z.array(z.string()).optional().describe("Current list content"),
|
|
209
|
-
currentGuardList: z.array(GuardListItemSchema).optional().describe("Current guard list content"),
|
|
205
|
+
invalidAddresses: z.array(z.string()).optional().nullable().describe("Invalid addresses"),
|
|
206
|
+
existResults: z.array(AddressExistenceSchema).optional().nullable().describe("Existence check results"),
|
|
207
|
+
message: z.string().optional().nullable().describe("Operation message"),
|
|
208
|
+
currentList: z.array(z.string()).optional().nullable().describe("Current list content"),
|
|
209
|
+
currentGuardList: z.array(GuardListItemSchema).optional().nullable().describe("Current guard list content"),
|
|
210
210
|
}).describe("List operation response");
|
|
211
211
|
// Blacklist Operations
|
|
212
212
|
export const BlacklistOperationSchema = z.discriminatedUnion("op", [
|
|
@@ -46959,13 +46959,13 @@ export declare const LocalQueryResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
46959
46959
|
suspended: z.ZodOptional<z.ZodBoolean>;
|
|
46960
46960
|
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
46961
46961
|
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
46962
|
-
m: z.ZodOptional<z.ZodString
|
|
46962
|
+
m: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
46963
46963
|
}, "strip", z.ZodTypeAny, {
|
|
46964
46964
|
address: string;
|
|
46965
46965
|
name?: string | undefined;
|
|
46966
46966
|
createdAt?: number | undefined;
|
|
46967
46967
|
updatedAt?: number | undefined;
|
|
46968
|
-
m?: string | undefined;
|
|
46968
|
+
m?: string | null | undefined;
|
|
46969
46969
|
suspended?: boolean | undefined;
|
|
46970
46970
|
pubkey?: string | undefined;
|
|
46971
46971
|
secret?: string | undefined;
|
|
@@ -46974,7 +46974,7 @@ export declare const LocalQueryResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
46974
46974
|
name?: string | undefined;
|
|
46975
46975
|
createdAt?: number | undefined;
|
|
46976
46976
|
updatedAt?: number | undefined;
|
|
46977
|
-
m?: string | undefined;
|
|
46977
|
+
m?: string | null | undefined;
|
|
46978
46978
|
suspended?: boolean | undefined;
|
|
46979
46979
|
pubkey?: string | undefined;
|
|
46980
46980
|
secret?: string | undefined;
|
|
@@ -46985,7 +46985,7 @@ export declare const LocalQueryResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
46985
46985
|
name?: string | undefined;
|
|
46986
46986
|
createdAt?: number | undefined;
|
|
46987
46987
|
updatedAt?: number | undefined;
|
|
46988
|
-
m?: string | undefined;
|
|
46988
|
+
m?: string | null | undefined;
|
|
46989
46989
|
suspended?: boolean | undefined;
|
|
46990
46990
|
pubkey?: string | undefined;
|
|
46991
46991
|
secret?: string | undefined;
|
|
@@ -46997,7 +46997,7 @@ export declare const LocalQueryResultSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
46997
46997
|
name?: string | undefined;
|
|
46998
46998
|
createdAt?: number | undefined;
|
|
46999
46999
|
updatedAt?: number | undefined;
|
|
47000
|
-
m?: string | undefined;
|
|
47000
|
+
m?: string | null | undefined;
|
|
47001
47001
|
suspended?: boolean | undefined;
|
|
47002
47002
|
pubkey?: string | undefined;
|
|
47003
47003
|
secret?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wowok_agent",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.18",
|
|
4
4
|
"description": "Making It Easy for Agents to Communicate, Collaborate, Trade, and Trust.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
32
32
|
"lodash": "^4.18.1",
|
|
33
|
-
"wowok": "2.1.
|
|
33
|
+
"wowok": "2.1.18",
|
|
34
34
|
"zod": "^3.25.76"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|