@fuul/mcp-server 1.1.2 → 1.3.0

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.
@@ -3,11 +3,11 @@ export declare const listProjectsInputSchema: z.ZodObject<{
3
3
  page: z.ZodOptional<z.ZodNumber>;
4
4
  query: z.ZodOptional<z.ZodString>;
5
5
  }, "strip", z.ZodTypeAny, {
6
- page?: number | undefined;
7
6
  query?: string | undefined;
8
- }, {
9
7
  page?: number | undefined;
8
+ }, {
10
9
  query?: string | undefined;
10
+ page?: number | undefined;
11
11
  }>;
12
12
  export declare const projectIdParamSchema: z.ZodObject<{
13
13
  project_id: z.ZodString;
@@ -581,4 +581,681 @@ export declare const getProjectAffiliatesBreakdownSchema: z.ZodObject<{
581
581
  sortOrder?: "asc" | "desc" | undefined;
582
582
  }>;
583
583
  export type GetProjectAffiliatesBreakdownInput = z.infer<typeof getProjectAffiliatesBreakdownSchema>;
584
+ export declare const projectApiKeyBearerFieldsSchema: z.ZodObject<{
585
+ project_api_key: z.ZodOptional<z.ZodString>;
586
+ }, "strip", z.ZodTypeAny, {
587
+ project_api_key?: string | undefined;
588
+ }, {
589
+ project_api_key?: string | undefined;
590
+ }>;
591
+ export declare const tierProtectionPublicBodySchema: z.ZodObject<{
592
+ tier_id: z.ZodString;
593
+ expires_at: z.ZodOptional<z.ZodString>;
594
+ protection_days: z.ZodOptional<z.ZodNumber>;
595
+ }, "strip", z.ZodTypeAny, {
596
+ tier_id: string;
597
+ expires_at?: string | undefined;
598
+ protection_days?: number | undefined;
599
+ }, {
600
+ tier_id: string;
601
+ expires_at?: string | undefined;
602
+ protection_days?: number | undefined;
603
+ }>;
604
+ export declare const createProjectAffiliatePublicFieldsSchema: z.ZodObject<{
605
+ dry_run: z.ZodOptional<z.ZodBoolean>;
606
+ confirmed: z.ZodOptional<z.ZodBoolean>;
607
+ } & {
608
+ project_api_key: z.ZodOptional<z.ZodString>;
609
+ } & {
610
+ user_identifier: z.ZodString;
611
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
612
+ alias: z.ZodOptional<z.ZodString>;
613
+ region: z.ZodOptional<z.ZodString>;
614
+ status: z.ZodOptional<z.ZodString>;
615
+ note: z.ZodOptional<z.ZodString>;
616
+ audiences: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
617
+ approve_project_tier_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
618
+ reviewed_by_user_id: z.ZodOptional<z.ZodString>;
619
+ tier_protection: z.ZodOptional<z.ZodObject<{
620
+ tier_id: z.ZodString;
621
+ expires_at: z.ZodOptional<z.ZodString>;
622
+ protection_days: z.ZodOptional<z.ZodNumber>;
623
+ }, "strip", z.ZodTypeAny, {
624
+ tier_id: string;
625
+ expires_at?: string | undefined;
626
+ protection_days?: number | undefined;
627
+ }, {
628
+ tier_id: string;
629
+ expires_at?: string | undefined;
630
+ protection_days?: number | undefined;
631
+ }>>;
632
+ }, "strip", z.ZodTypeAny, {
633
+ user_identifier: string;
634
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
635
+ status?: string | undefined;
636
+ dry_run?: boolean | undefined;
637
+ confirmed?: boolean | undefined;
638
+ audiences?: string[] | undefined;
639
+ region?: string | undefined;
640
+ project_api_key?: string | undefined;
641
+ alias?: string | undefined;
642
+ note?: string | undefined;
643
+ approve_project_tier_ids?: string[] | undefined;
644
+ reviewed_by_user_id?: string | undefined;
645
+ tier_protection?: {
646
+ tier_id: string;
647
+ expires_at?: string | undefined;
648
+ protection_days?: number | undefined;
649
+ } | undefined;
650
+ }, {
651
+ user_identifier: string;
652
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
653
+ status?: string | undefined;
654
+ dry_run?: boolean | undefined;
655
+ confirmed?: boolean | undefined;
656
+ audiences?: string[] | undefined;
657
+ region?: string | undefined;
658
+ project_api_key?: string | undefined;
659
+ alias?: string | undefined;
660
+ note?: string | undefined;
661
+ approve_project_tier_ids?: string[] | undefined;
662
+ reviewed_by_user_id?: string | undefined;
663
+ tier_protection?: {
664
+ tier_id: string;
665
+ expires_at?: string | undefined;
666
+ protection_days?: number | undefined;
667
+ } | undefined;
668
+ }>;
669
+ export declare const createProjectAffiliatePublicInputSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
670
+ dry_run: z.ZodOptional<z.ZodBoolean>;
671
+ confirmed: z.ZodOptional<z.ZodBoolean>;
672
+ } & {
673
+ project_api_key: z.ZodOptional<z.ZodString>;
674
+ } & {
675
+ user_identifier: z.ZodString;
676
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
677
+ alias: z.ZodOptional<z.ZodString>;
678
+ region: z.ZodOptional<z.ZodString>;
679
+ status: z.ZodOptional<z.ZodString>;
680
+ note: z.ZodOptional<z.ZodString>;
681
+ audiences: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
682
+ approve_project_tier_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
683
+ reviewed_by_user_id: z.ZodOptional<z.ZodString>;
684
+ tier_protection: z.ZodOptional<z.ZodObject<{
685
+ tier_id: z.ZodString;
686
+ expires_at: z.ZodOptional<z.ZodString>;
687
+ protection_days: z.ZodOptional<z.ZodNumber>;
688
+ }, "strip", z.ZodTypeAny, {
689
+ tier_id: string;
690
+ expires_at?: string | undefined;
691
+ protection_days?: number | undefined;
692
+ }, {
693
+ tier_id: string;
694
+ expires_at?: string | undefined;
695
+ protection_days?: number | undefined;
696
+ }>>;
697
+ }, "strip", z.ZodTypeAny, {
698
+ user_identifier: string;
699
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
700
+ status?: string | undefined;
701
+ dry_run?: boolean | undefined;
702
+ confirmed?: boolean | undefined;
703
+ audiences?: string[] | undefined;
704
+ region?: string | undefined;
705
+ project_api_key?: string | undefined;
706
+ alias?: string | undefined;
707
+ note?: string | undefined;
708
+ approve_project_tier_ids?: string[] | undefined;
709
+ reviewed_by_user_id?: string | undefined;
710
+ tier_protection?: {
711
+ tier_id: string;
712
+ expires_at?: string | undefined;
713
+ protection_days?: number | undefined;
714
+ } | undefined;
715
+ }, {
716
+ user_identifier: string;
717
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
718
+ status?: string | undefined;
719
+ dry_run?: boolean | undefined;
720
+ confirmed?: boolean | undefined;
721
+ audiences?: string[] | undefined;
722
+ region?: string | undefined;
723
+ project_api_key?: string | undefined;
724
+ alias?: string | undefined;
725
+ note?: string | undefined;
726
+ approve_project_tier_ids?: string[] | undefined;
727
+ reviewed_by_user_id?: string | undefined;
728
+ tier_protection?: {
729
+ tier_id: string;
730
+ expires_at?: string | undefined;
731
+ protection_days?: number | undefined;
732
+ } | undefined;
733
+ }>, {
734
+ user_identifier: string;
735
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
736
+ status?: string | undefined;
737
+ dry_run?: boolean | undefined;
738
+ confirmed?: boolean | undefined;
739
+ audiences?: string[] | undefined;
740
+ region?: string | undefined;
741
+ project_api_key?: string | undefined;
742
+ alias?: string | undefined;
743
+ note?: string | undefined;
744
+ approve_project_tier_ids?: string[] | undefined;
745
+ reviewed_by_user_id?: string | undefined;
746
+ tier_protection?: {
747
+ tier_id: string;
748
+ expires_at?: string | undefined;
749
+ protection_days?: number | undefined;
750
+ } | undefined;
751
+ }, {
752
+ user_identifier: string;
753
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
754
+ status?: string | undefined;
755
+ dry_run?: boolean | undefined;
756
+ confirmed?: boolean | undefined;
757
+ audiences?: string[] | undefined;
758
+ region?: string | undefined;
759
+ project_api_key?: string | undefined;
760
+ alias?: string | undefined;
761
+ note?: string | undefined;
762
+ approve_project_tier_ids?: string[] | undefined;
763
+ reviewed_by_user_id?: string | undefined;
764
+ tier_protection?: {
765
+ tier_id: string;
766
+ expires_at?: string | undefined;
767
+ protection_days?: number | undefined;
768
+ } | undefined;
769
+ }>, {
770
+ user_identifier: string;
771
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
772
+ status?: string | undefined;
773
+ dry_run?: boolean | undefined;
774
+ confirmed?: boolean | undefined;
775
+ audiences?: string[] | undefined;
776
+ region?: string | undefined;
777
+ project_api_key?: string | undefined;
778
+ alias?: string | undefined;
779
+ note?: string | undefined;
780
+ approve_project_tier_ids?: string[] | undefined;
781
+ reviewed_by_user_id?: string | undefined;
782
+ tier_protection?: {
783
+ tier_id: string;
784
+ expires_at?: string | undefined;
785
+ protection_days?: number | undefined;
786
+ } | undefined;
787
+ }, {
788
+ user_identifier: string;
789
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
790
+ status?: string | undefined;
791
+ dry_run?: boolean | undefined;
792
+ confirmed?: boolean | undefined;
793
+ audiences?: string[] | undefined;
794
+ region?: string | undefined;
795
+ project_api_key?: string | undefined;
796
+ alias?: string | undefined;
797
+ note?: string | undefined;
798
+ approve_project_tier_ids?: string[] | undefined;
799
+ reviewed_by_user_id?: string | undefined;
800
+ tier_protection?: {
801
+ tier_id: string;
802
+ expires_at?: string | undefined;
803
+ protection_days?: number | undefined;
804
+ } | undefined;
805
+ }>;
806
+ export type CreateProjectAffiliatePublicInput = z.infer<typeof createProjectAffiliatePublicInputSchema>;
807
+ export declare const updateProjectAffiliatePublicFieldsSchema: z.ZodObject<{
808
+ dry_run: z.ZodOptional<z.ZodBoolean>;
809
+ confirmed: z.ZodOptional<z.ZodBoolean>;
810
+ } & {
811
+ project_api_key: z.ZodOptional<z.ZodString>;
812
+ } & {
813
+ project_affiliate_id: z.ZodString;
814
+ alias: z.ZodOptional<z.ZodString>;
815
+ region: z.ZodOptional<z.ZodString>;
816
+ status: z.ZodOptional<z.ZodString>;
817
+ note: z.ZodOptional<z.ZodString>;
818
+ audiences: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
819
+ approve_project_tier_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
820
+ reviewed_by_user_id: z.ZodOptional<z.ZodString>;
821
+ tier_protection: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
822
+ tier_id: z.ZodString;
823
+ expires_at: z.ZodOptional<z.ZodString>;
824
+ protection_days: z.ZodOptional<z.ZodNumber>;
825
+ }, "strip", z.ZodTypeAny, {
826
+ tier_id: string;
827
+ expires_at?: string | undefined;
828
+ protection_days?: number | undefined;
829
+ }, {
830
+ tier_id: string;
831
+ expires_at?: string | undefined;
832
+ protection_days?: number | undefined;
833
+ }>, z.ZodNull]>>;
834
+ }, "strip", z.ZodTypeAny, {
835
+ project_affiliate_id: string;
836
+ status?: string | undefined;
837
+ dry_run?: boolean | undefined;
838
+ confirmed?: boolean | undefined;
839
+ audiences?: string[] | undefined;
840
+ region?: string | undefined;
841
+ project_api_key?: string | undefined;
842
+ alias?: string | undefined;
843
+ note?: string | undefined;
844
+ approve_project_tier_ids?: string[] | undefined;
845
+ reviewed_by_user_id?: string | undefined;
846
+ tier_protection?: {
847
+ tier_id: string;
848
+ expires_at?: string | undefined;
849
+ protection_days?: number | undefined;
850
+ } | null | undefined;
851
+ }, {
852
+ project_affiliate_id: string;
853
+ status?: string | undefined;
854
+ dry_run?: boolean | undefined;
855
+ confirmed?: boolean | undefined;
856
+ audiences?: string[] | undefined;
857
+ region?: string | undefined;
858
+ project_api_key?: string | undefined;
859
+ alias?: string | undefined;
860
+ note?: string | undefined;
861
+ approve_project_tier_ids?: string[] | undefined;
862
+ reviewed_by_user_id?: string | undefined;
863
+ tier_protection?: {
864
+ tier_id: string;
865
+ expires_at?: string | undefined;
866
+ protection_days?: number | undefined;
867
+ } | null | undefined;
868
+ }>;
869
+ export declare const updateProjectAffiliatePublicInputSchema: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodObject<{
870
+ dry_run: z.ZodOptional<z.ZodBoolean>;
871
+ confirmed: z.ZodOptional<z.ZodBoolean>;
872
+ } & {
873
+ project_api_key: z.ZodOptional<z.ZodString>;
874
+ } & {
875
+ project_affiliate_id: z.ZodString;
876
+ alias: z.ZodOptional<z.ZodString>;
877
+ region: z.ZodOptional<z.ZodString>;
878
+ status: z.ZodOptional<z.ZodString>;
879
+ note: z.ZodOptional<z.ZodString>;
880
+ audiences: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
881
+ approve_project_tier_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
882
+ reviewed_by_user_id: z.ZodOptional<z.ZodString>;
883
+ tier_protection: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
884
+ tier_id: z.ZodString;
885
+ expires_at: z.ZodOptional<z.ZodString>;
886
+ protection_days: z.ZodOptional<z.ZodNumber>;
887
+ }, "strip", z.ZodTypeAny, {
888
+ tier_id: string;
889
+ expires_at?: string | undefined;
890
+ protection_days?: number | undefined;
891
+ }, {
892
+ tier_id: string;
893
+ expires_at?: string | undefined;
894
+ protection_days?: number | undefined;
895
+ }>, z.ZodNull]>>;
896
+ }, "strip", z.ZodTypeAny, {
897
+ project_affiliate_id: string;
898
+ status?: string | undefined;
899
+ dry_run?: boolean | undefined;
900
+ confirmed?: boolean | undefined;
901
+ audiences?: string[] | undefined;
902
+ region?: string | undefined;
903
+ project_api_key?: string | undefined;
904
+ alias?: string | undefined;
905
+ note?: string | undefined;
906
+ approve_project_tier_ids?: string[] | undefined;
907
+ reviewed_by_user_id?: string | undefined;
908
+ tier_protection?: {
909
+ tier_id: string;
910
+ expires_at?: string | undefined;
911
+ protection_days?: number | undefined;
912
+ } | null | undefined;
913
+ }, {
914
+ project_affiliate_id: string;
915
+ status?: string | undefined;
916
+ dry_run?: boolean | undefined;
917
+ confirmed?: boolean | undefined;
918
+ audiences?: string[] | undefined;
919
+ region?: string | undefined;
920
+ project_api_key?: string | undefined;
921
+ alias?: string | undefined;
922
+ note?: string | undefined;
923
+ approve_project_tier_ids?: string[] | undefined;
924
+ reviewed_by_user_id?: string | undefined;
925
+ tier_protection?: {
926
+ tier_id: string;
927
+ expires_at?: string | undefined;
928
+ protection_days?: number | undefined;
929
+ } | null | undefined;
930
+ }>, {
931
+ project_affiliate_id: string;
932
+ status?: string | undefined;
933
+ dry_run?: boolean | undefined;
934
+ confirmed?: boolean | undefined;
935
+ audiences?: string[] | undefined;
936
+ region?: string | undefined;
937
+ project_api_key?: string | undefined;
938
+ alias?: string | undefined;
939
+ note?: string | undefined;
940
+ approve_project_tier_ids?: string[] | undefined;
941
+ reviewed_by_user_id?: string | undefined;
942
+ tier_protection?: {
943
+ tier_id: string;
944
+ expires_at?: string | undefined;
945
+ protection_days?: number | undefined;
946
+ } | null | undefined;
947
+ }, {
948
+ project_affiliate_id: string;
949
+ status?: string | undefined;
950
+ dry_run?: boolean | undefined;
951
+ confirmed?: boolean | undefined;
952
+ audiences?: string[] | undefined;
953
+ region?: string | undefined;
954
+ project_api_key?: string | undefined;
955
+ alias?: string | undefined;
956
+ note?: string | undefined;
957
+ approve_project_tier_ids?: string[] | undefined;
958
+ reviewed_by_user_id?: string | undefined;
959
+ tier_protection?: {
960
+ tier_id: string;
961
+ expires_at?: string | undefined;
962
+ protection_days?: number | undefined;
963
+ } | null | undefined;
964
+ }>, {
965
+ project_affiliate_id: string;
966
+ status?: string | undefined;
967
+ dry_run?: boolean | undefined;
968
+ confirmed?: boolean | undefined;
969
+ audiences?: string[] | undefined;
970
+ region?: string | undefined;
971
+ project_api_key?: string | undefined;
972
+ alias?: string | undefined;
973
+ note?: string | undefined;
974
+ approve_project_tier_ids?: string[] | undefined;
975
+ reviewed_by_user_id?: string | undefined;
976
+ tier_protection?: {
977
+ tier_id: string;
978
+ expires_at?: string | undefined;
979
+ protection_days?: number | undefined;
980
+ } | null | undefined;
981
+ }, {
982
+ project_affiliate_id: string;
983
+ status?: string | undefined;
984
+ dry_run?: boolean | undefined;
985
+ confirmed?: boolean | undefined;
986
+ audiences?: string[] | undefined;
987
+ region?: string | undefined;
988
+ project_api_key?: string | undefined;
989
+ alias?: string | undefined;
990
+ note?: string | undefined;
991
+ approve_project_tier_ids?: string[] | undefined;
992
+ reviewed_by_user_id?: string | undefined;
993
+ tier_protection?: {
994
+ tier_id: string;
995
+ expires_at?: string | undefined;
996
+ protection_days?: number | undefined;
997
+ } | null | undefined;
998
+ }>, {
999
+ project_affiliate_id: string;
1000
+ status?: string | undefined;
1001
+ dry_run?: boolean | undefined;
1002
+ confirmed?: boolean | undefined;
1003
+ audiences?: string[] | undefined;
1004
+ region?: string | undefined;
1005
+ project_api_key?: string | undefined;
1006
+ alias?: string | undefined;
1007
+ note?: string | undefined;
1008
+ approve_project_tier_ids?: string[] | undefined;
1009
+ reviewed_by_user_id?: string | undefined;
1010
+ tier_protection?: {
1011
+ tier_id: string;
1012
+ expires_at?: string | undefined;
1013
+ protection_days?: number | undefined;
1014
+ } | null | undefined;
1015
+ }, {
1016
+ project_affiliate_id: string;
1017
+ status?: string | undefined;
1018
+ dry_run?: boolean | undefined;
1019
+ confirmed?: boolean | undefined;
1020
+ audiences?: string[] | undefined;
1021
+ region?: string | undefined;
1022
+ project_api_key?: string | undefined;
1023
+ alias?: string | undefined;
1024
+ note?: string | undefined;
1025
+ approve_project_tier_ids?: string[] | undefined;
1026
+ reviewed_by_user_id?: string | undefined;
1027
+ tier_protection?: {
1028
+ tier_id: string;
1029
+ expires_at?: string | undefined;
1030
+ protection_days?: number | undefined;
1031
+ } | null | undefined;
1032
+ }>;
1033
+ export declare const getProjectAffiliatePublicInputSchema: z.ZodObject<{
1034
+ project_api_key: z.ZodOptional<z.ZodString>;
1035
+ } & {
1036
+ project_affiliate_id: z.ZodString;
1037
+ }, "strip", z.ZodTypeAny, {
1038
+ project_affiliate_id: string;
1039
+ project_api_key?: string | undefined;
1040
+ }, {
1041
+ project_affiliate_id: string;
1042
+ project_api_key?: string | undefined;
1043
+ }>;
1044
+ export type GetProjectAffiliatePublicInput = z.infer<typeof getProjectAffiliatePublicInputSchema>;
1045
+ /** Single conversion event payload (Public API SendEventRequest). */
1046
+ export declare const sendEventPayloadSchema: z.ZodObject<{
1047
+ name: z.ZodString;
1048
+ dedup_id: z.ZodString;
1049
+ user_identifier: z.ZodString;
1050
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1051
+ args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
1052
+ timestamp: z.ZodOptional<z.ZodNumber>;
1053
+ }, "strip", z.ZodTypeAny, {
1054
+ name: string;
1055
+ user_identifier: string;
1056
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1057
+ dedup_id: string;
1058
+ args?: Record<string, string | number | boolean> | undefined;
1059
+ timestamp?: number | undefined;
1060
+ }, {
1061
+ name: string;
1062
+ user_identifier: string;
1063
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1064
+ dedup_id: string;
1065
+ args?: Record<string, string | number | boolean> | undefined;
1066
+ timestamp?: number | undefined;
1067
+ }>;
1068
+ export type SendEventPayload = z.infer<typeof sendEventPayloadSchema>;
1069
+ export declare const sendEventFieldsSchema: z.ZodObject<{
1070
+ project_api_key: z.ZodOptional<z.ZodString>;
1071
+ } & {
1072
+ dry_run: z.ZodOptional<z.ZodBoolean>;
1073
+ confirmed: z.ZodOptional<z.ZodBoolean>;
1074
+ } & {
1075
+ name: z.ZodString;
1076
+ dedup_id: z.ZodString;
1077
+ user_identifier: z.ZodString;
1078
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1079
+ args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
1080
+ timestamp: z.ZodOptional<z.ZodNumber>;
1081
+ }, "strip", z.ZodTypeAny, {
1082
+ name: string;
1083
+ user_identifier: string;
1084
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1085
+ dedup_id: string;
1086
+ dry_run?: boolean | undefined;
1087
+ confirmed?: boolean | undefined;
1088
+ project_api_key?: string | undefined;
1089
+ args?: Record<string, string | number | boolean> | undefined;
1090
+ timestamp?: number | undefined;
1091
+ }, {
1092
+ name: string;
1093
+ user_identifier: string;
1094
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1095
+ dedup_id: string;
1096
+ dry_run?: boolean | undefined;
1097
+ confirmed?: boolean | undefined;
1098
+ project_api_key?: string | undefined;
1099
+ args?: Record<string, string | number | boolean> | undefined;
1100
+ timestamp?: number | undefined;
1101
+ }>;
1102
+ export declare const sendEventInputSchema: z.ZodObject<{
1103
+ project_api_key: z.ZodOptional<z.ZodString>;
1104
+ } & {
1105
+ dry_run: z.ZodOptional<z.ZodBoolean>;
1106
+ confirmed: z.ZodOptional<z.ZodBoolean>;
1107
+ } & {
1108
+ name: z.ZodString;
1109
+ dedup_id: z.ZodString;
1110
+ user_identifier: z.ZodString;
1111
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1112
+ args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
1113
+ timestamp: z.ZodOptional<z.ZodNumber>;
1114
+ }, "strip", z.ZodTypeAny, {
1115
+ name: string;
1116
+ user_identifier: string;
1117
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1118
+ dedup_id: string;
1119
+ dry_run?: boolean | undefined;
1120
+ confirmed?: boolean | undefined;
1121
+ project_api_key?: string | undefined;
1122
+ args?: Record<string, string | number | boolean> | undefined;
1123
+ timestamp?: number | undefined;
1124
+ }, {
1125
+ name: string;
1126
+ user_identifier: string;
1127
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1128
+ dedup_id: string;
1129
+ dry_run?: boolean | undefined;
1130
+ confirmed?: boolean | undefined;
1131
+ project_api_key?: string | undefined;
1132
+ args?: Record<string, string | number | boolean> | undefined;
1133
+ timestamp?: number | undefined;
1134
+ }>;
1135
+ export type SendEventInput = z.infer<typeof sendEventInputSchema>;
1136
+ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
1137
+ project_api_key: z.ZodOptional<z.ZodString>;
1138
+ } & {
1139
+ dry_run: z.ZodOptional<z.ZodBoolean>;
1140
+ confirmed: z.ZodOptional<z.ZodBoolean>;
1141
+ } & {
1142
+ events: z.ZodArray<z.ZodObject<{
1143
+ name: z.ZodString;
1144
+ dedup_id: z.ZodString;
1145
+ user_identifier: z.ZodString;
1146
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1147
+ args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
1148
+ timestamp: z.ZodOptional<z.ZodNumber>;
1149
+ }, "strip", z.ZodTypeAny, {
1150
+ name: string;
1151
+ user_identifier: string;
1152
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1153
+ dedup_id: string;
1154
+ args?: Record<string, string | number | boolean> | undefined;
1155
+ timestamp?: number | undefined;
1156
+ }, {
1157
+ name: string;
1158
+ user_identifier: string;
1159
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1160
+ dedup_id: string;
1161
+ args?: Record<string, string | number | boolean> | undefined;
1162
+ timestamp?: number | undefined;
1163
+ }>, "many">;
1164
+ }, "strip", z.ZodTypeAny, {
1165
+ events: {
1166
+ name: string;
1167
+ user_identifier: string;
1168
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1169
+ dedup_id: string;
1170
+ args?: Record<string, string | number | boolean> | undefined;
1171
+ timestamp?: number | undefined;
1172
+ }[];
1173
+ dry_run?: boolean | undefined;
1174
+ confirmed?: boolean | undefined;
1175
+ project_api_key?: string | undefined;
1176
+ }, {
1177
+ events: {
1178
+ name: string;
1179
+ user_identifier: string;
1180
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1181
+ dedup_id: string;
1182
+ args?: Record<string, string | number | boolean> | undefined;
1183
+ timestamp?: number | undefined;
1184
+ }[];
1185
+ dry_run?: boolean | undefined;
1186
+ confirmed?: boolean | undefined;
1187
+ project_api_key?: string | undefined;
1188
+ }>;
1189
+ export declare const sendBatchEventsInputSchema: z.ZodObject<{
1190
+ project_api_key: z.ZodOptional<z.ZodString>;
1191
+ } & {
1192
+ dry_run: z.ZodOptional<z.ZodBoolean>;
1193
+ confirmed: z.ZodOptional<z.ZodBoolean>;
1194
+ } & {
1195
+ events: z.ZodArray<z.ZodObject<{
1196
+ name: z.ZodString;
1197
+ dedup_id: z.ZodString;
1198
+ user_identifier: z.ZodString;
1199
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1200
+ args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
1201
+ timestamp: z.ZodOptional<z.ZodNumber>;
1202
+ }, "strip", z.ZodTypeAny, {
1203
+ name: string;
1204
+ user_identifier: string;
1205
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1206
+ dedup_id: string;
1207
+ args?: Record<string, string | number | boolean> | undefined;
1208
+ timestamp?: number | undefined;
1209
+ }, {
1210
+ name: string;
1211
+ user_identifier: string;
1212
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1213
+ dedup_id: string;
1214
+ args?: Record<string, string | number | boolean> | undefined;
1215
+ timestamp?: number | undefined;
1216
+ }>, "many">;
1217
+ }, "strip", z.ZodTypeAny, {
1218
+ events: {
1219
+ name: string;
1220
+ user_identifier: string;
1221
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1222
+ dedup_id: string;
1223
+ args?: Record<string, string | number | boolean> | undefined;
1224
+ timestamp?: number | undefined;
1225
+ }[];
1226
+ dry_run?: boolean | undefined;
1227
+ confirmed?: boolean | undefined;
1228
+ project_api_key?: string | undefined;
1229
+ }, {
1230
+ events: {
1231
+ name: string;
1232
+ user_identifier: string;
1233
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1234
+ dedup_id: string;
1235
+ args?: Record<string, string | number | boolean> | undefined;
1236
+ timestamp?: number | undefined;
1237
+ }[];
1238
+ dry_run?: boolean | undefined;
1239
+ confirmed?: boolean | undefined;
1240
+ project_api_key?: string | undefined;
1241
+ }>;
1242
+ export type SendBatchEventsInput = z.infer<typeof sendBatchEventsInputSchema>;
1243
+ export declare const checkEventStatusInputSchema: z.ZodObject<{
1244
+ project_api_key: z.ZodOptional<z.ZodString>;
1245
+ } & {
1246
+ user_identifier: z.ZodString;
1247
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1248
+ event_name: z.ZodString;
1249
+ }, "strip", z.ZodTypeAny, {
1250
+ user_identifier: string;
1251
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1252
+ event_name: string;
1253
+ project_api_key?: string | undefined;
1254
+ }, {
1255
+ user_identifier: string;
1256
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1257
+ event_name: string;
1258
+ project_api_key?: string | undefined;
1259
+ }>;
1260
+ export type CheckEventStatusInput = z.infer<typeof checkEventStatusInputSchema>;
584
1261
  //# sourceMappingURL=tool-schemas.d.ts.map