@longdotxyz/shared 0.0.153 → 0.0.155
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/contracts/builder.contract.d.ts +1453 -60
- package/dist/contracts/builder.contract.js +29 -2
- package/dist/contracts/builder.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +793 -4
- package/dist/types/constants.d.ts +10 -0
- package/dist/types/constants.js +12 -1
- package/dist/types/constants.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import z from "zod";
|
|
2
|
+
import { BuilderOrderBy } from "../types";
|
|
2
3
|
declare const BuilderGitHubDataSchema: z.ZodObject<{
|
|
3
4
|
username: z.ZodString;
|
|
4
5
|
user: z.ZodObject<{
|
|
@@ -2715,52 +2716,1455 @@ declare const CoinWithTypeSchema: z.ZodObject<{
|
|
|
2715
2716
|
numeraire: string;
|
|
2716
2717
|
created_at: string;
|
|
2717
2718
|
}>;
|
|
2718
|
-
declare const
|
|
2719
|
+
declare const BuilderListItemSchema: z.ZodObject<{
|
|
2719
2720
|
id: z.ZodString;
|
|
2720
2721
|
wallet_address: z.ZodNullable<z.ZodString>;
|
|
2721
2722
|
github_username: z.ZodNullable<z.ZodString>;
|
|
2722
2723
|
x_username: z.ZodNullable<z.ZodString>;
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
}>;
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
}, {
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2724
|
+
is_validated: z.ZodBoolean;
|
|
2725
|
+
github_data: z.ZodNullable<z.ZodObject<{
|
|
2726
|
+
username: z.ZodString;
|
|
2727
|
+
user: z.ZodObject<{
|
|
2728
|
+
createdAt: z.ZodString;
|
|
2729
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
2730
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
2731
|
+
followers: z.ZodObject<{
|
|
2732
|
+
totalCount: z.ZodNumber;
|
|
2733
|
+
}, "strip", z.ZodTypeAny, {
|
|
2734
|
+
totalCount: number;
|
|
2735
|
+
}, {
|
|
2736
|
+
totalCount: number;
|
|
2737
|
+
}>;
|
|
2738
|
+
repositories: z.ZodObject<{
|
|
2739
|
+
totalCount: z.ZodNumber;
|
|
2740
|
+
nodes: z.ZodArray<z.ZodObject<{
|
|
2741
|
+
stargazerCount: z.ZodNumber;
|
|
2742
|
+
forkCount: z.ZodNumber;
|
|
2743
|
+
isFork: z.ZodBoolean;
|
|
2744
|
+
primaryLanguage: z.ZodNullable<z.ZodObject<{
|
|
2745
|
+
name: z.ZodString;
|
|
2746
|
+
}, "strip", z.ZodTypeAny, {
|
|
2747
|
+
name: string;
|
|
2748
|
+
}, {
|
|
2749
|
+
name: string;
|
|
2750
|
+
}>>;
|
|
2751
|
+
pushedAt: z.ZodNullable<z.ZodString>;
|
|
2752
|
+
}, "strip", z.ZodTypeAny, {
|
|
2753
|
+
stargazerCount: number;
|
|
2754
|
+
forkCount: number;
|
|
2755
|
+
isFork: boolean;
|
|
2756
|
+
primaryLanguage: {
|
|
2757
|
+
name: string;
|
|
2758
|
+
} | null;
|
|
2759
|
+
pushedAt: string | null;
|
|
2760
|
+
}, {
|
|
2761
|
+
stargazerCount: number;
|
|
2762
|
+
forkCount: number;
|
|
2763
|
+
isFork: boolean;
|
|
2764
|
+
primaryLanguage: {
|
|
2765
|
+
name: string;
|
|
2766
|
+
} | null;
|
|
2767
|
+
pushedAt: string | null;
|
|
2768
|
+
}>, "many">;
|
|
2769
|
+
pageInfo: z.ZodObject<{
|
|
2770
|
+
hasNextPage: z.ZodBoolean;
|
|
2771
|
+
endCursor: z.ZodNullable<z.ZodString>;
|
|
2772
|
+
}, "strip", z.ZodTypeAny, {
|
|
2773
|
+
hasNextPage: boolean;
|
|
2774
|
+
endCursor: string | null;
|
|
2775
|
+
}, {
|
|
2776
|
+
hasNextPage: boolean;
|
|
2777
|
+
endCursor: string | null;
|
|
2778
|
+
}>;
|
|
2779
|
+
}, "strip", z.ZodTypeAny, {
|
|
2780
|
+
totalCount: number;
|
|
2781
|
+
nodes: {
|
|
2782
|
+
stargazerCount: number;
|
|
2783
|
+
forkCount: number;
|
|
2784
|
+
isFork: boolean;
|
|
2785
|
+
primaryLanguage: {
|
|
2786
|
+
name: string;
|
|
2787
|
+
} | null;
|
|
2788
|
+
pushedAt: string | null;
|
|
2789
|
+
}[];
|
|
2790
|
+
pageInfo: {
|
|
2791
|
+
hasNextPage: boolean;
|
|
2792
|
+
endCursor: string | null;
|
|
2793
|
+
};
|
|
2794
|
+
}, {
|
|
2795
|
+
totalCount: number;
|
|
2796
|
+
nodes: {
|
|
2797
|
+
stargazerCount: number;
|
|
2798
|
+
forkCount: number;
|
|
2799
|
+
isFork: boolean;
|
|
2800
|
+
primaryLanguage: {
|
|
2801
|
+
name: string;
|
|
2802
|
+
} | null;
|
|
2803
|
+
pushedAt: string | null;
|
|
2804
|
+
}[];
|
|
2805
|
+
pageInfo: {
|
|
2806
|
+
hasNextPage: boolean;
|
|
2807
|
+
endCursor: string | null;
|
|
2808
|
+
};
|
|
2809
|
+
}>;
|
|
2810
|
+
contributionsCollection: z.ZodObject<{
|
|
2811
|
+
totalCommitContributions: z.ZodNumber;
|
|
2812
|
+
totalPullRequestContributions: z.ZodNumber;
|
|
2813
|
+
totalPullRequestReviewContributions: z.ZodNumber;
|
|
2814
|
+
totalIssueContributions: z.ZodNumber;
|
|
2815
|
+
contributionCalendar: z.ZodObject<{
|
|
2816
|
+
totalContributions: z.ZodNumber;
|
|
2817
|
+
}, "strip", z.ZodTypeAny, {
|
|
2818
|
+
totalContributions: number;
|
|
2819
|
+
}, {
|
|
2820
|
+
totalContributions: number;
|
|
2821
|
+
}>;
|
|
2822
|
+
}, "strip", z.ZodTypeAny, {
|
|
2823
|
+
totalCommitContributions: number;
|
|
2824
|
+
totalPullRequestContributions: number;
|
|
2825
|
+
totalPullRequestReviewContributions: number;
|
|
2826
|
+
totalIssueContributions: number;
|
|
2827
|
+
contributionCalendar: {
|
|
2828
|
+
totalContributions: number;
|
|
2829
|
+
};
|
|
2830
|
+
}, {
|
|
2831
|
+
totalCommitContributions: number;
|
|
2832
|
+
totalPullRequestContributions: number;
|
|
2833
|
+
totalPullRequestReviewContributions: number;
|
|
2834
|
+
totalIssueContributions: number;
|
|
2835
|
+
contributionCalendar: {
|
|
2836
|
+
totalContributions: number;
|
|
2837
|
+
};
|
|
2838
|
+
}>;
|
|
2839
|
+
}, "strip", z.ZodTypeAny, {
|
|
2840
|
+
createdAt: string;
|
|
2841
|
+
bio: string | null;
|
|
2842
|
+
websiteUrl: string | null;
|
|
2843
|
+
followers: {
|
|
2844
|
+
totalCount: number;
|
|
2845
|
+
};
|
|
2846
|
+
repositories: {
|
|
2847
|
+
totalCount: number;
|
|
2848
|
+
nodes: {
|
|
2849
|
+
stargazerCount: number;
|
|
2850
|
+
forkCount: number;
|
|
2851
|
+
isFork: boolean;
|
|
2852
|
+
primaryLanguage: {
|
|
2853
|
+
name: string;
|
|
2854
|
+
} | null;
|
|
2855
|
+
pushedAt: string | null;
|
|
2856
|
+
}[];
|
|
2857
|
+
pageInfo: {
|
|
2858
|
+
hasNextPage: boolean;
|
|
2859
|
+
endCursor: string | null;
|
|
2860
|
+
};
|
|
2861
|
+
};
|
|
2862
|
+
contributionsCollection: {
|
|
2863
|
+
totalCommitContributions: number;
|
|
2864
|
+
totalPullRequestContributions: number;
|
|
2865
|
+
totalPullRequestReviewContributions: number;
|
|
2866
|
+
totalIssueContributions: number;
|
|
2867
|
+
contributionCalendar: {
|
|
2868
|
+
totalContributions: number;
|
|
2869
|
+
};
|
|
2870
|
+
};
|
|
2871
|
+
}, {
|
|
2872
|
+
createdAt: string;
|
|
2873
|
+
bio: string | null;
|
|
2874
|
+
websiteUrl: string | null;
|
|
2875
|
+
followers: {
|
|
2876
|
+
totalCount: number;
|
|
2877
|
+
};
|
|
2878
|
+
repositories: {
|
|
2879
|
+
totalCount: number;
|
|
2880
|
+
nodes: {
|
|
2881
|
+
stargazerCount: number;
|
|
2882
|
+
forkCount: number;
|
|
2883
|
+
isFork: boolean;
|
|
2884
|
+
primaryLanguage: {
|
|
2885
|
+
name: string;
|
|
2886
|
+
} | null;
|
|
2887
|
+
pushedAt: string | null;
|
|
2888
|
+
}[];
|
|
2889
|
+
pageInfo: {
|
|
2890
|
+
hasNextPage: boolean;
|
|
2891
|
+
endCursor: string | null;
|
|
2892
|
+
};
|
|
2893
|
+
};
|
|
2894
|
+
contributionsCollection: {
|
|
2895
|
+
totalCommitContributions: number;
|
|
2896
|
+
totalPullRequestContributions: number;
|
|
2897
|
+
totalPullRequestReviewContributions: number;
|
|
2898
|
+
totalIssueContributions: number;
|
|
2899
|
+
contributionCalendar: {
|
|
2900
|
+
totalContributions: number;
|
|
2901
|
+
};
|
|
2902
|
+
};
|
|
2903
|
+
}>;
|
|
2904
|
+
search: z.ZodObject<{
|
|
2905
|
+
merged: z.ZodObject<{
|
|
2906
|
+
issueCount: z.ZodNumber;
|
|
2907
|
+
}, "strip", z.ZodTypeAny, {
|
|
2908
|
+
issueCount: number;
|
|
2909
|
+
}, {
|
|
2910
|
+
issueCount: number;
|
|
2911
|
+
}>;
|
|
2912
|
+
externalMerged: z.ZodObject<{
|
|
2913
|
+
issueCount: z.ZodNumber;
|
|
2914
|
+
}, "strip", z.ZodTypeAny, {
|
|
2915
|
+
issueCount: number;
|
|
2916
|
+
}, {
|
|
2917
|
+
issueCount: number;
|
|
2918
|
+
}>;
|
|
2919
|
+
reviews: z.ZodObject<{
|
|
2920
|
+
issueCount: z.ZodNumber;
|
|
2921
|
+
}, "strip", z.ZodTypeAny, {
|
|
2922
|
+
issueCount: number;
|
|
2923
|
+
}, {
|
|
2924
|
+
issueCount: number;
|
|
2925
|
+
}>;
|
|
2926
|
+
issues: z.ZodObject<{
|
|
2927
|
+
issueCount: z.ZodNumber;
|
|
2928
|
+
}, "strip", z.ZodTypeAny, {
|
|
2929
|
+
issueCount: number;
|
|
2930
|
+
}, {
|
|
2931
|
+
issueCount: number;
|
|
2932
|
+
}>;
|
|
2933
|
+
}, "strip", z.ZodTypeAny, {
|
|
2934
|
+
issues: {
|
|
2935
|
+
issueCount: number;
|
|
2936
|
+
};
|
|
2937
|
+
merged: {
|
|
2938
|
+
issueCount: number;
|
|
2939
|
+
};
|
|
2940
|
+
externalMerged: {
|
|
2941
|
+
issueCount: number;
|
|
2942
|
+
};
|
|
2943
|
+
reviews: {
|
|
2944
|
+
issueCount: number;
|
|
2945
|
+
};
|
|
2946
|
+
}, {
|
|
2947
|
+
issues: {
|
|
2948
|
+
issueCount: number;
|
|
2949
|
+
};
|
|
2950
|
+
merged: {
|
|
2951
|
+
issueCount: number;
|
|
2952
|
+
};
|
|
2953
|
+
externalMerged: {
|
|
2954
|
+
issueCount: number;
|
|
2955
|
+
};
|
|
2956
|
+
reviews: {
|
|
2957
|
+
issueCount: number;
|
|
2958
|
+
};
|
|
2959
|
+
}>;
|
|
2960
|
+
fetchedAt: z.ZodString;
|
|
2961
|
+
}, "strip", z.ZodTypeAny, {
|
|
2962
|
+
username: string;
|
|
2963
|
+
user: {
|
|
2964
|
+
createdAt: string;
|
|
2965
|
+
bio: string | null;
|
|
2966
|
+
websiteUrl: string | null;
|
|
2967
|
+
followers: {
|
|
2968
|
+
totalCount: number;
|
|
2969
|
+
};
|
|
2970
|
+
repositories: {
|
|
2971
|
+
totalCount: number;
|
|
2972
|
+
nodes: {
|
|
2973
|
+
stargazerCount: number;
|
|
2974
|
+
forkCount: number;
|
|
2975
|
+
isFork: boolean;
|
|
2976
|
+
primaryLanguage: {
|
|
2977
|
+
name: string;
|
|
2978
|
+
} | null;
|
|
2979
|
+
pushedAt: string | null;
|
|
2980
|
+
}[];
|
|
2981
|
+
pageInfo: {
|
|
2982
|
+
hasNextPage: boolean;
|
|
2983
|
+
endCursor: string | null;
|
|
2984
|
+
};
|
|
2985
|
+
};
|
|
2986
|
+
contributionsCollection: {
|
|
2987
|
+
totalCommitContributions: number;
|
|
2988
|
+
totalPullRequestContributions: number;
|
|
2989
|
+
totalPullRequestReviewContributions: number;
|
|
2990
|
+
totalIssueContributions: number;
|
|
2991
|
+
contributionCalendar: {
|
|
2992
|
+
totalContributions: number;
|
|
2993
|
+
};
|
|
2994
|
+
};
|
|
2995
|
+
};
|
|
2996
|
+
search: {
|
|
2997
|
+
issues: {
|
|
2998
|
+
issueCount: number;
|
|
2999
|
+
};
|
|
3000
|
+
merged: {
|
|
3001
|
+
issueCount: number;
|
|
3002
|
+
};
|
|
3003
|
+
externalMerged: {
|
|
3004
|
+
issueCount: number;
|
|
3005
|
+
};
|
|
3006
|
+
reviews: {
|
|
3007
|
+
issueCount: number;
|
|
3008
|
+
};
|
|
3009
|
+
};
|
|
3010
|
+
fetchedAt: string;
|
|
3011
|
+
}, {
|
|
3012
|
+
username: string;
|
|
3013
|
+
user: {
|
|
3014
|
+
createdAt: string;
|
|
3015
|
+
bio: string | null;
|
|
3016
|
+
websiteUrl: string | null;
|
|
3017
|
+
followers: {
|
|
3018
|
+
totalCount: number;
|
|
3019
|
+
};
|
|
3020
|
+
repositories: {
|
|
3021
|
+
totalCount: number;
|
|
3022
|
+
nodes: {
|
|
3023
|
+
stargazerCount: number;
|
|
3024
|
+
forkCount: number;
|
|
3025
|
+
isFork: boolean;
|
|
3026
|
+
primaryLanguage: {
|
|
3027
|
+
name: string;
|
|
3028
|
+
} | null;
|
|
3029
|
+
pushedAt: string | null;
|
|
3030
|
+
}[];
|
|
3031
|
+
pageInfo: {
|
|
3032
|
+
hasNextPage: boolean;
|
|
3033
|
+
endCursor: string | null;
|
|
3034
|
+
};
|
|
3035
|
+
};
|
|
3036
|
+
contributionsCollection: {
|
|
3037
|
+
totalCommitContributions: number;
|
|
3038
|
+
totalPullRequestContributions: number;
|
|
3039
|
+
totalPullRequestReviewContributions: number;
|
|
3040
|
+
totalIssueContributions: number;
|
|
3041
|
+
contributionCalendar: {
|
|
3042
|
+
totalContributions: number;
|
|
3043
|
+
};
|
|
3044
|
+
};
|
|
3045
|
+
};
|
|
3046
|
+
search: {
|
|
3047
|
+
issues: {
|
|
3048
|
+
issueCount: number;
|
|
3049
|
+
};
|
|
3050
|
+
merged: {
|
|
3051
|
+
issueCount: number;
|
|
3052
|
+
};
|
|
3053
|
+
externalMerged: {
|
|
3054
|
+
issueCount: number;
|
|
3055
|
+
};
|
|
3056
|
+
reviews: {
|
|
3057
|
+
issueCount: number;
|
|
3058
|
+
};
|
|
3059
|
+
};
|
|
3060
|
+
fetchedAt: string;
|
|
3061
|
+
}>>;
|
|
3062
|
+
x_data: z.ZodNullable<z.ZodObject<{
|
|
3063
|
+
user: z.ZodObject<{
|
|
3064
|
+
id: z.ZodString;
|
|
3065
|
+
username: z.ZodString;
|
|
3066
|
+
name: z.ZodString;
|
|
3067
|
+
verified: z.ZodBoolean;
|
|
3068
|
+
verified_type: z.ZodOptional<z.ZodString>;
|
|
3069
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3070
|
+
protected: z.ZodBoolean;
|
|
3071
|
+
profile_image_url: z.ZodOptional<z.ZodString>;
|
|
3072
|
+
public_metrics: z.ZodOptional<z.ZodObject<{
|
|
3073
|
+
followers_count: z.ZodNumber;
|
|
3074
|
+
following_count: z.ZodNumber;
|
|
3075
|
+
tweet_count: z.ZodNumber;
|
|
3076
|
+
listed_count: z.ZodNumber;
|
|
3077
|
+
like_count: z.ZodOptional<z.ZodNumber>;
|
|
3078
|
+
}, "strip", z.ZodTypeAny, {
|
|
3079
|
+
followers_count: number;
|
|
3080
|
+
following_count: number;
|
|
3081
|
+
tweet_count: number;
|
|
3082
|
+
listed_count: number;
|
|
3083
|
+
like_count?: number | undefined;
|
|
3084
|
+
}, {
|
|
3085
|
+
followers_count: number;
|
|
3086
|
+
following_count: number;
|
|
3087
|
+
tweet_count: number;
|
|
3088
|
+
listed_count: number;
|
|
3089
|
+
like_count?: number | undefined;
|
|
3090
|
+
}>>;
|
|
3091
|
+
}, "strip", z.ZodTypeAny, {
|
|
3092
|
+
id: string;
|
|
3093
|
+
name: string;
|
|
3094
|
+
username: string;
|
|
3095
|
+
verified: boolean;
|
|
3096
|
+
protected: boolean;
|
|
3097
|
+
created_at?: string | undefined;
|
|
3098
|
+
verified_type?: string | undefined;
|
|
3099
|
+
profile_image_url?: string | undefined;
|
|
3100
|
+
public_metrics?: {
|
|
3101
|
+
followers_count: number;
|
|
3102
|
+
following_count: number;
|
|
3103
|
+
tweet_count: number;
|
|
3104
|
+
listed_count: number;
|
|
3105
|
+
like_count?: number | undefined;
|
|
3106
|
+
} | undefined;
|
|
3107
|
+
}, {
|
|
3108
|
+
id: string;
|
|
3109
|
+
name: string;
|
|
3110
|
+
username: string;
|
|
3111
|
+
verified: boolean;
|
|
3112
|
+
protected: boolean;
|
|
3113
|
+
created_at?: string | undefined;
|
|
3114
|
+
verified_type?: string | undefined;
|
|
3115
|
+
profile_image_url?: string | undefined;
|
|
3116
|
+
public_metrics?: {
|
|
3117
|
+
followers_count: number;
|
|
3118
|
+
following_count: number;
|
|
3119
|
+
tweet_count: number;
|
|
3120
|
+
listed_count: number;
|
|
3121
|
+
like_count?: number | undefined;
|
|
3122
|
+
} | undefined;
|
|
3123
|
+
}>;
|
|
3124
|
+
fetchedAt: z.ZodString;
|
|
3125
|
+
}, "strip", z.ZodTypeAny, {
|
|
3126
|
+
user: {
|
|
3127
|
+
id: string;
|
|
3128
|
+
name: string;
|
|
3129
|
+
username: string;
|
|
3130
|
+
verified: boolean;
|
|
3131
|
+
protected: boolean;
|
|
3132
|
+
created_at?: string | undefined;
|
|
3133
|
+
verified_type?: string | undefined;
|
|
3134
|
+
profile_image_url?: string | undefined;
|
|
3135
|
+
public_metrics?: {
|
|
3136
|
+
followers_count: number;
|
|
3137
|
+
following_count: number;
|
|
3138
|
+
tweet_count: number;
|
|
3139
|
+
listed_count: number;
|
|
3140
|
+
like_count?: number | undefined;
|
|
3141
|
+
} | undefined;
|
|
3142
|
+
};
|
|
3143
|
+
fetchedAt: string;
|
|
3144
|
+
}, {
|
|
3145
|
+
user: {
|
|
3146
|
+
id: string;
|
|
3147
|
+
name: string;
|
|
3148
|
+
username: string;
|
|
3149
|
+
verified: boolean;
|
|
3150
|
+
protected: boolean;
|
|
3151
|
+
created_at?: string | undefined;
|
|
3152
|
+
verified_type?: string | undefined;
|
|
3153
|
+
profile_image_url?: string | undefined;
|
|
3154
|
+
public_metrics?: {
|
|
3155
|
+
followers_count: number;
|
|
3156
|
+
following_count: number;
|
|
3157
|
+
tweet_count: number;
|
|
3158
|
+
listed_count: number;
|
|
3159
|
+
like_count?: number | undefined;
|
|
3160
|
+
} | undefined;
|
|
3161
|
+
};
|
|
3162
|
+
fetchedAt: string;
|
|
3163
|
+
}>>;
|
|
3164
|
+
created_at: z.ZodString;
|
|
3165
|
+
}, "strip", z.ZodTypeAny, {
|
|
3166
|
+
id: string;
|
|
3167
|
+
created_at: string;
|
|
3168
|
+
wallet_address: string | null;
|
|
3169
|
+
github_username: string | null;
|
|
3170
|
+
x_username: string | null;
|
|
3171
|
+
is_validated: boolean;
|
|
3172
|
+
github_data: {
|
|
3173
|
+
username: string;
|
|
3174
|
+
user: {
|
|
3175
|
+
createdAt: string;
|
|
3176
|
+
bio: string | null;
|
|
3177
|
+
websiteUrl: string | null;
|
|
3178
|
+
followers: {
|
|
3179
|
+
totalCount: number;
|
|
3180
|
+
};
|
|
3181
|
+
repositories: {
|
|
3182
|
+
totalCount: number;
|
|
3183
|
+
nodes: {
|
|
3184
|
+
stargazerCount: number;
|
|
3185
|
+
forkCount: number;
|
|
3186
|
+
isFork: boolean;
|
|
3187
|
+
primaryLanguage: {
|
|
3188
|
+
name: string;
|
|
3189
|
+
} | null;
|
|
3190
|
+
pushedAt: string | null;
|
|
3191
|
+
}[];
|
|
3192
|
+
pageInfo: {
|
|
3193
|
+
hasNextPage: boolean;
|
|
3194
|
+
endCursor: string | null;
|
|
3195
|
+
};
|
|
3196
|
+
};
|
|
3197
|
+
contributionsCollection: {
|
|
3198
|
+
totalCommitContributions: number;
|
|
3199
|
+
totalPullRequestContributions: number;
|
|
3200
|
+
totalPullRequestReviewContributions: number;
|
|
3201
|
+
totalIssueContributions: number;
|
|
3202
|
+
contributionCalendar: {
|
|
3203
|
+
totalContributions: number;
|
|
3204
|
+
};
|
|
3205
|
+
};
|
|
3206
|
+
};
|
|
3207
|
+
search: {
|
|
3208
|
+
issues: {
|
|
3209
|
+
issueCount: number;
|
|
3210
|
+
};
|
|
3211
|
+
merged: {
|
|
3212
|
+
issueCount: number;
|
|
3213
|
+
};
|
|
3214
|
+
externalMerged: {
|
|
3215
|
+
issueCount: number;
|
|
3216
|
+
};
|
|
3217
|
+
reviews: {
|
|
3218
|
+
issueCount: number;
|
|
3219
|
+
};
|
|
3220
|
+
};
|
|
3221
|
+
fetchedAt: string;
|
|
3222
|
+
} | null;
|
|
3223
|
+
x_data: {
|
|
3224
|
+
user: {
|
|
3225
|
+
id: string;
|
|
3226
|
+
name: string;
|
|
3227
|
+
username: string;
|
|
3228
|
+
verified: boolean;
|
|
3229
|
+
protected: boolean;
|
|
3230
|
+
created_at?: string | undefined;
|
|
3231
|
+
verified_type?: string | undefined;
|
|
3232
|
+
profile_image_url?: string | undefined;
|
|
3233
|
+
public_metrics?: {
|
|
3234
|
+
followers_count: number;
|
|
3235
|
+
following_count: number;
|
|
3236
|
+
tweet_count: number;
|
|
3237
|
+
listed_count: number;
|
|
3238
|
+
like_count?: number | undefined;
|
|
3239
|
+
} | undefined;
|
|
3240
|
+
};
|
|
3241
|
+
fetchedAt: string;
|
|
3242
|
+
} | null;
|
|
3243
|
+
}, {
|
|
3244
|
+
id: string;
|
|
3245
|
+
created_at: string;
|
|
3246
|
+
wallet_address: string | null;
|
|
3247
|
+
github_username: string | null;
|
|
3248
|
+
x_username: string | null;
|
|
3249
|
+
is_validated: boolean;
|
|
3250
|
+
github_data: {
|
|
3251
|
+
username: string;
|
|
3252
|
+
user: {
|
|
3253
|
+
createdAt: string;
|
|
3254
|
+
bio: string | null;
|
|
3255
|
+
websiteUrl: string | null;
|
|
3256
|
+
followers: {
|
|
3257
|
+
totalCount: number;
|
|
3258
|
+
};
|
|
3259
|
+
repositories: {
|
|
3260
|
+
totalCount: number;
|
|
3261
|
+
nodes: {
|
|
3262
|
+
stargazerCount: number;
|
|
3263
|
+
forkCount: number;
|
|
3264
|
+
isFork: boolean;
|
|
3265
|
+
primaryLanguage: {
|
|
3266
|
+
name: string;
|
|
3267
|
+
} | null;
|
|
3268
|
+
pushedAt: string | null;
|
|
3269
|
+
}[];
|
|
3270
|
+
pageInfo: {
|
|
3271
|
+
hasNextPage: boolean;
|
|
3272
|
+
endCursor: string | null;
|
|
3273
|
+
};
|
|
3274
|
+
};
|
|
3275
|
+
contributionsCollection: {
|
|
3276
|
+
totalCommitContributions: number;
|
|
3277
|
+
totalPullRequestContributions: number;
|
|
3278
|
+
totalPullRequestReviewContributions: number;
|
|
3279
|
+
totalIssueContributions: number;
|
|
3280
|
+
contributionCalendar: {
|
|
3281
|
+
totalContributions: number;
|
|
3282
|
+
};
|
|
3283
|
+
};
|
|
3284
|
+
};
|
|
3285
|
+
search: {
|
|
3286
|
+
issues: {
|
|
3287
|
+
issueCount: number;
|
|
3288
|
+
};
|
|
3289
|
+
merged: {
|
|
3290
|
+
issueCount: number;
|
|
3291
|
+
};
|
|
3292
|
+
externalMerged: {
|
|
3293
|
+
issueCount: number;
|
|
3294
|
+
};
|
|
3295
|
+
reviews: {
|
|
3296
|
+
issueCount: number;
|
|
3297
|
+
};
|
|
3298
|
+
};
|
|
3299
|
+
fetchedAt: string;
|
|
3300
|
+
} | null;
|
|
3301
|
+
x_data: {
|
|
3302
|
+
user: {
|
|
3303
|
+
id: string;
|
|
3304
|
+
name: string;
|
|
3305
|
+
username: string;
|
|
3306
|
+
verified: boolean;
|
|
3307
|
+
protected: boolean;
|
|
3308
|
+
created_at?: string | undefined;
|
|
3309
|
+
verified_type?: string | undefined;
|
|
3310
|
+
profile_image_url?: string | undefined;
|
|
3311
|
+
public_metrics?: {
|
|
3312
|
+
followers_count: number;
|
|
3313
|
+
following_count: number;
|
|
3314
|
+
tweet_count: number;
|
|
3315
|
+
listed_count: number;
|
|
3316
|
+
like_count?: number | undefined;
|
|
3317
|
+
} | undefined;
|
|
3318
|
+
};
|
|
3319
|
+
fetchedAt: string;
|
|
3320
|
+
} | null;
|
|
3321
|
+
}>;
|
|
3322
|
+
declare const ReferralProfileSchema: z.ZodObject<{
|
|
3323
|
+
id: z.ZodString;
|
|
3324
|
+
wallet_address: z.ZodNullable<z.ZodString>;
|
|
3325
|
+
github_username: z.ZodNullable<z.ZodString>;
|
|
3326
|
+
x_username: z.ZodNullable<z.ZodString>;
|
|
3327
|
+
created_at: z.ZodString;
|
|
3328
|
+
}, "strip", z.ZodTypeAny, {
|
|
3329
|
+
id: string;
|
|
3330
|
+
created_at: string;
|
|
3331
|
+
wallet_address: string | null;
|
|
3332
|
+
github_username: string | null;
|
|
3333
|
+
x_username: string | null;
|
|
3334
|
+
}, {
|
|
3335
|
+
id: string;
|
|
3336
|
+
created_at: string;
|
|
3337
|
+
wallet_address: string | null;
|
|
3338
|
+
github_username: string | null;
|
|
3339
|
+
x_username: string | null;
|
|
3340
|
+
}>;
|
|
3341
|
+
declare const ReferrerPublicProfileSchema: z.ZodObject<{
|
|
3342
|
+
id: z.ZodString;
|
|
3343
|
+
referral_code: z.ZodString;
|
|
3344
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3345
|
+
avatar_url: z.ZodNullable<z.ZodString>;
|
|
3346
|
+
}, "strip", z.ZodTypeAny, {
|
|
3347
|
+
id: string;
|
|
3348
|
+
name: string | null;
|
|
3349
|
+
referral_code: string;
|
|
3350
|
+
avatar_url: string | null;
|
|
3351
|
+
}, {
|
|
3352
|
+
id: string;
|
|
3353
|
+
name: string | null;
|
|
3354
|
+
referral_code: string;
|
|
3355
|
+
avatar_url: string | null;
|
|
3356
|
+
}>;
|
|
3357
|
+
declare const builderContract: {
|
|
3358
|
+
register: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
3359
|
+
referral_code: z.ZodOptional<z.ZodString>;
|
|
3360
|
+
}, "strip", z.ZodTypeAny, {
|
|
3361
|
+
referral_code?: string | undefined;
|
|
3362
|
+
}, {
|
|
3363
|
+
referral_code?: string | undefined;
|
|
3364
|
+
}>, z.ZodObject<{
|
|
3365
|
+
result: z.ZodObject<{
|
|
3366
|
+
id: z.ZodString;
|
|
3367
|
+
auth_user_id: z.ZodString;
|
|
3368
|
+
wallet_address: z.ZodNullable<z.ZodString>;
|
|
3369
|
+
github_username: z.ZodNullable<z.ZodString>;
|
|
3370
|
+
x_username: z.ZodNullable<z.ZodString>;
|
|
3371
|
+
is_validated: z.ZodBoolean;
|
|
3372
|
+
github_data: z.ZodNullable<z.ZodObject<{
|
|
3373
|
+
username: z.ZodString;
|
|
3374
|
+
user: z.ZodObject<{
|
|
3375
|
+
createdAt: z.ZodString;
|
|
3376
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
3377
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
3378
|
+
followers: z.ZodObject<{
|
|
3379
|
+
totalCount: z.ZodNumber;
|
|
3380
|
+
}, "strip", z.ZodTypeAny, {
|
|
3381
|
+
totalCount: number;
|
|
3382
|
+
}, {
|
|
3383
|
+
totalCount: number;
|
|
3384
|
+
}>;
|
|
3385
|
+
repositories: z.ZodObject<{
|
|
3386
|
+
totalCount: z.ZodNumber;
|
|
3387
|
+
nodes: z.ZodArray<z.ZodObject<{
|
|
3388
|
+
stargazerCount: z.ZodNumber;
|
|
3389
|
+
forkCount: z.ZodNumber;
|
|
3390
|
+
isFork: z.ZodBoolean;
|
|
3391
|
+
primaryLanguage: z.ZodNullable<z.ZodObject<{
|
|
3392
|
+
name: z.ZodString;
|
|
3393
|
+
}, "strip", z.ZodTypeAny, {
|
|
3394
|
+
name: string;
|
|
3395
|
+
}, {
|
|
3396
|
+
name: string;
|
|
3397
|
+
}>>;
|
|
3398
|
+
pushedAt: z.ZodNullable<z.ZodString>;
|
|
3399
|
+
}, "strip", z.ZodTypeAny, {
|
|
3400
|
+
stargazerCount: number;
|
|
3401
|
+
forkCount: number;
|
|
3402
|
+
isFork: boolean;
|
|
3403
|
+
primaryLanguage: {
|
|
3404
|
+
name: string;
|
|
3405
|
+
} | null;
|
|
3406
|
+
pushedAt: string | null;
|
|
3407
|
+
}, {
|
|
3408
|
+
stargazerCount: number;
|
|
3409
|
+
forkCount: number;
|
|
3410
|
+
isFork: boolean;
|
|
3411
|
+
primaryLanguage: {
|
|
3412
|
+
name: string;
|
|
3413
|
+
} | null;
|
|
3414
|
+
pushedAt: string | null;
|
|
3415
|
+
}>, "many">;
|
|
3416
|
+
pageInfo: z.ZodObject<{
|
|
3417
|
+
hasNextPage: z.ZodBoolean;
|
|
3418
|
+
endCursor: z.ZodNullable<z.ZodString>;
|
|
3419
|
+
}, "strip", z.ZodTypeAny, {
|
|
3420
|
+
hasNextPage: boolean;
|
|
3421
|
+
endCursor: string | null;
|
|
3422
|
+
}, {
|
|
3423
|
+
hasNextPage: boolean;
|
|
3424
|
+
endCursor: string | null;
|
|
3425
|
+
}>;
|
|
3426
|
+
}, "strip", z.ZodTypeAny, {
|
|
3427
|
+
totalCount: number;
|
|
3428
|
+
nodes: {
|
|
3429
|
+
stargazerCount: number;
|
|
3430
|
+
forkCount: number;
|
|
3431
|
+
isFork: boolean;
|
|
3432
|
+
primaryLanguage: {
|
|
3433
|
+
name: string;
|
|
3434
|
+
} | null;
|
|
3435
|
+
pushedAt: string | null;
|
|
3436
|
+
}[];
|
|
3437
|
+
pageInfo: {
|
|
3438
|
+
hasNextPage: boolean;
|
|
3439
|
+
endCursor: string | null;
|
|
3440
|
+
};
|
|
3441
|
+
}, {
|
|
3442
|
+
totalCount: number;
|
|
3443
|
+
nodes: {
|
|
3444
|
+
stargazerCount: number;
|
|
3445
|
+
forkCount: number;
|
|
3446
|
+
isFork: boolean;
|
|
3447
|
+
primaryLanguage: {
|
|
3448
|
+
name: string;
|
|
3449
|
+
} | null;
|
|
3450
|
+
pushedAt: string | null;
|
|
3451
|
+
}[];
|
|
3452
|
+
pageInfo: {
|
|
3453
|
+
hasNextPage: boolean;
|
|
3454
|
+
endCursor: string | null;
|
|
3455
|
+
};
|
|
3456
|
+
}>;
|
|
3457
|
+
contributionsCollection: z.ZodObject<{
|
|
3458
|
+
totalCommitContributions: z.ZodNumber;
|
|
3459
|
+
totalPullRequestContributions: z.ZodNumber;
|
|
3460
|
+
totalPullRequestReviewContributions: z.ZodNumber;
|
|
3461
|
+
totalIssueContributions: z.ZodNumber;
|
|
3462
|
+
contributionCalendar: z.ZodObject<{
|
|
3463
|
+
totalContributions: z.ZodNumber;
|
|
3464
|
+
}, "strip", z.ZodTypeAny, {
|
|
3465
|
+
totalContributions: number;
|
|
3466
|
+
}, {
|
|
3467
|
+
totalContributions: number;
|
|
3468
|
+
}>;
|
|
3469
|
+
}, "strip", z.ZodTypeAny, {
|
|
3470
|
+
totalCommitContributions: number;
|
|
3471
|
+
totalPullRequestContributions: number;
|
|
3472
|
+
totalPullRequestReviewContributions: number;
|
|
3473
|
+
totalIssueContributions: number;
|
|
3474
|
+
contributionCalendar: {
|
|
3475
|
+
totalContributions: number;
|
|
3476
|
+
};
|
|
3477
|
+
}, {
|
|
3478
|
+
totalCommitContributions: number;
|
|
3479
|
+
totalPullRequestContributions: number;
|
|
3480
|
+
totalPullRequestReviewContributions: number;
|
|
3481
|
+
totalIssueContributions: number;
|
|
3482
|
+
contributionCalendar: {
|
|
3483
|
+
totalContributions: number;
|
|
3484
|
+
};
|
|
3485
|
+
}>;
|
|
3486
|
+
}, "strip", z.ZodTypeAny, {
|
|
3487
|
+
createdAt: string;
|
|
3488
|
+
bio: string | null;
|
|
3489
|
+
websiteUrl: string | null;
|
|
3490
|
+
followers: {
|
|
3491
|
+
totalCount: number;
|
|
3492
|
+
};
|
|
3493
|
+
repositories: {
|
|
3494
|
+
totalCount: number;
|
|
3495
|
+
nodes: {
|
|
3496
|
+
stargazerCount: number;
|
|
3497
|
+
forkCount: number;
|
|
3498
|
+
isFork: boolean;
|
|
3499
|
+
primaryLanguage: {
|
|
3500
|
+
name: string;
|
|
3501
|
+
} | null;
|
|
3502
|
+
pushedAt: string | null;
|
|
3503
|
+
}[];
|
|
3504
|
+
pageInfo: {
|
|
3505
|
+
hasNextPage: boolean;
|
|
3506
|
+
endCursor: string | null;
|
|
3507
|
+
};
|
|
3508
|
+
};
|
|
3509
|
+
contributionsCollection: {
|
|
3510
|
+
totalCommitContributions: number;
|
|
3511
|
+
totalPullRequestContributions: number;
|
|
3512
|
+
totalPullRequestReviewContributions: number;
|
|
3513
|
+
totalIssueContributions: number;
|
|
3514
|
+
contributionCalendar: {
|
|
3515
|
+
totalContributions: number;
|
|
3516
|
+
};
|
|
3517
|
+
};
|
|
3518
|
+
}, {
|
|
3519
|
+
createdAt: string;
|
|
3520
|
+
bio: string | null;
|
|
3521
|
+
websiteUrl: string | null;
|
|
3522
|
+
followers: {
|
|
3523
|
+
totalCount: number;
|
|
3524
|
+
};
|
|
3525
|
+
repositories: {
|
|
3526
|
+
totalCount: number;
|
|
3527
|
+
nodes: {
|
|
3528
|
+
stargazerCount: number;
|
|
3529
|
+
forkCount: number;
|
|
3530
|
+
isFork: boolean;
|
|
3531
|
+
primaryLanguage: {
|
|
3532
|
+
name: string;
|
|
3533
|
+
} | null;
|
|
3534
|
+
pushedAt: string | null;
|
|
3535
|
+
}[];
|
|
3536
|
+
pageInfo: {
|
|
3537
|
+
hasNextPage: boolean;
|
|
3538
|
+
endCursor: string | null;
|
|
3539
|
+
};
|
|
3540
|
+
};
|
|
3541
|
+
contributionsCollection: {
|
|
3542
|
+
totalCommitContributions: number;
|
|
3543
|
+
totalPullRequestContributions: number;
|
|
3544
|
+
totalPullRequestReviewContributions: number;
|
|
3545
|
+
totalIssueContributions: number;
|
|
3546
|
+
contributionCalendar: {
|
|
3547
|
+
totalContributions: number;
|
|
3548
|
+
};
|
|
3549
|
+
};
|
|
3550
|
+
}>;
|
|
3551
|
+
search: z.ZodObject<{
|
|
3552
|
+
merged: z.ZodObject<{
|
|
3553
|
+
issueCount: z.ZodNumber;
|
|
3554
|
+
}, "strip", z.ZodTypeAny, {
|
|
3555
|
+
issueCount: number;
|
|
3556
|
+
}, {
|
|
3557
|
+
issueCount: number;
|
|
3558
|
+
}>;
|
|
3559
|
+
externalMerged: z.ZodObject<{
|
|
3560
|
+
issueCount: z.ZodNumber;
|
|
3561
|
+
}, "strip", z.ZodTypeAny, {
|
|
3562
|
+
issueCount: number;
|
|
3563
|
+
}, {
|
|
3564
|
+
issueCount: number;
|
|
3565
|
+
}>;
|
|
3566
|
+
reviews: z.ZodObject<{
|
|
3567
|
+
issueCount: z.ZodNumber;
|
|
3568
|
+
}, "strip", z.ZodTypeAny, {
|
|
3569
|
+
issueCount: number;
|
|
3570
|
+
}, {
|
|
3571
|
+
issueCount: number;
|
|
3572
|
+
}>;
|
|
3573
|
+
issues: z.ZodObject<{
|
|
3574
|
+
issueCount: z.ZodNumber;
|
|
3575
|
+
}, "strip", z.ZodTypeAny, {
|
|
3576
|
+
issueCount: number;
|
|
3577
|
+
}, {
|
|
3578
|
+
issueCount: number;
|
|
3579
|
+
}>;
|
|
3580
|
+
}, "strip", z.ZodTypeAny, {
|
|
3581
|
+
issues: {
|
|
3582
|
+
issueCount: number;
|
|
3583
|
+
};
|
|
3584
|
+
merged: {
|
|
3585
|
+
issueCount: number;
|
|
3586
|
+
};
|
|
3587
|
+
externalMerged: {
|
|
3588
|
+
issueCount: number;
|
|
3589
|
+
};
|
|
3590
|
+
reviews: {
|
|
3591
|
+
issueCount: number;
|
|
3592
|
+
};
|
|
3593
|
+
}, {
|
|
3594
|
+
issues: {
|
|
3595
|
+
issueCount: number;
|
|
3596
|
+
};
|
|
3597
|
+
merged: {
|
|
3598
|
+
issueCount: number;
|
|
3599
|
+
};
|
|
3600
|
+
externalMerged: {
|
|
3601
|
+
issueCount: number;
|
|
3602
|
+
};
|
|
3603
|
+
reviews: {
|
|
3604
|
+
issueCount: number;
|
|
3605
|
+
};
|
|
3606
|
+
}>;
|
|
3607
|
+
fetchedAt: z.ZodString;
|
|
3608
|
+
}, "strip", z.ZodTypeAny, {
|
|
3609
|
+
username: string;
|
|
3610
|
+
user: {
|
|
3611
|
+
createdAt: string;
|
|
3612
|
+
bio: string | null;
|
|
3613
|
+
websiteUrl: string | null;
|
|
3614
|
+
followers: {
|
|
3615
|
+
totalCount: number;
|
|
3616
|
+
};
|
|
3617
|
+
repositories: {
|
|
3618
|
+
totalCount: number;
|
|
3619
|
+
nodes: {
|
|
3620
|
+
stargazerCount: number;
|
|
3621
|
+
forkCount: number;
|
|
3622
|
+
isFork: boolean;
|
|
3623
|
+
primaryLanguage: {
|
|
3624
|
+
name: string;
|
|
3625
|
+
} | null;
|
|
3626
|
+
pushedAt: string | null;
|
|
3627
|
+
}[];
|
|
3628
|
+
pageInfo: {
|
|
3629
|
+
hasNextPage: boolean;
|
|
3630
|
+
endCursor: string | null;
|
|
3631
|
+
};
|
|
3632
|
+
};
|
|
3633
|
+
contributionsCollection: {
|
|
3634
|
+
totalCommitContributions: number;
|
|
3635
|
+
totalPullRequestContributions: number;
|
|
3636
|
+
totalPullRequestReviewContributions: number;
|
|
3637
|
+
totalIssueContributions: number;
|
|
3638
|
+
contributionCalendar: {
|
|
3639
|
+
totalContributions: number;
|
|
3640
|
+
};
|
|
3641
|
+
};
|
|
3642
|
+
};
|
|
3643
|
+
search: {
|
|
3644
|
+
issues: {
|
|
3645
|
+
issueCount: number;
|
|
3646
|
+
};
|
|
3647
|
+
merged: {
|
|
3648
|
+
issueCount: number;
|
|
3649
|
+
};
|
|
3650
|
+
externalMerged: {
|
|
3651
|
+
issueCount: number;
|
|
3652
|
+
};
|
|
3653
|
+
reviews: {
|
|
3654
|
+
issueCount: number;
|
|
3655
|
+
};
|
|
3656
|
+
};
|
|
3657
|
+
fetchedAt: string;
|
|
3658
|
+
}, {
|
|
3659
|
+
username: string;
|
|
3660
|
+
user: {
|
|
3661
|
+
createdAt: string;
|
|
3662
|
+
bio: string | null;
|
|
3663
|
+
websiteUrl: string | null;
|
|
3664
|
+
followers: {
|
|
3665
|
+
totalCount: number;
|
|
3666
|
+
};
|
|
3667
|
+
repositories: {
|
|
3668
|
+
totalCount: number;
|
|
3669
|
+
nodes: {
|
|
3670
|
+
stargazerCount: number;
|
|
3671
|
+
forkCount: number;
|
|
3672
|
+
isFork: boolean;
|
|
3673
|
+
primaryLanguage: {
|
|
3674
|
+
name: string;
|
|
3675
|
+
} | null;
|
|
3676
|
+
pushedAt: string | null;
|
|
3677
|
+
}[];
|
|
3678
|
+
pageInfo: {
|
|
3679
|
+
hasNextPage: boolean;
|
|
3680
|
+
endCursor: string | null;
|
|
3681
|
+
};
|
|
3682
|
+
};
|
|
3683
|
+
contributionsCollection: {
|
|
3684
|
+
totalCommitContributions: number;
|
|
3685
|
+
totalPullRequestContributions: number;
|
|
3686
|
+
totalPullRequestReviewContributions: number;
|
|
3687
|
+
totalIssueContributions: number;
|
|
3688
|
+
contributionCalendar: {
|
|
3689
|
+
totalContributions: number;
|
|
3690
|
+
};
|
|
3691
|
+
};
|
|
3692
|
+
};
|
|
3693
|
+
search: {
|
|
3694
|
+
issues: {
|
|
3695
|
+
issueCount: number;
|
|
3696
|
+
};
|
|
3697
|
+
merged: {
|
|
3698
|
+
issueCount: number;
|
|
3699
|
+
};
|
|
3700
|
+
externalMerged: {
|
|
3701
|
+
issueCount: number;
|
|
3702
|
+
};
|
|
3703
|
+
reviews: {
|
|
3704
|
+
issueCount: number;
|
|
3705
|
+
};
|
|
3706
|
+
};
|
|
3707
|
+
fetchedAt: string;
|
|
3708
|
+
}>>;
|
|
3709
|
+
x_data: z.ZodNullable<z.ZodObject<{
|
|
3710
|
+
user: z.ZodObject<{
|
|
3711
|
+
id: z.ZodString;
|
|
3712
|
+
username: z.ZodString;
|
|
3713
|
+
name: z.ZodString;
|
|
3714
|
+
verified: z.ZodBoolean;
|
|
3715
|
+
verified_type: z.ZodOptional<z.ZodString>;
|
|
3716
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3717
|
+
protected: z.ZodBoolean;
|
|
3718
|
+
profile_image_url: z.ZodOptional<z.ZodString>;
|
|
3719
|
+
public_metrics: z.ZodOptional<z.ZodObject<{
|
|
3720
|
+
followers_count: z.ZodNumber;
|
|
3721
|
+
following_count: z.ZodNumber;
|
|
3722
|
+
tweet_count: z.ZodNumber;
|
|
3723
|
+
listed_count: z.ZodNumber;
|
|
3724
|
+
like_count: z.ZodOptional<z.ZodNumber>;
|
|
3725
|
+
}, "strip", z.ZodTypeAny, {
|
|
3726
|
+
followers_count: number;
|
|
3727
|
+
following_count: number;
|
|
3728
|
+
tweet_count: number;
|
|
3729
|
+
listed_count: number;
|
|
3730
|
+
like_count?: number | undefined;
|
|
3731
|
+
}, {
|
|
3732
|
+
followers_count: number;
|
|
3733
|
+
following_count: number;
|
|
3734
|
+
tweet_count: number;
|
|
3735
|
+
listed_count: number;
|
|
3736
|
+
like_count?: number | undefined;
|
|
3737
|
+
}>>;
|
|
3738
|
+
}, "strip", z.ZodTypeAny, {
|
|
3739
|
+
id: string;
|
|
3740
|
+
name: string;
|
|
3741
|
+
username: string;
|
|
3742
|
+
verified: boolean;
|
|
3743
|
+
protected: boolean;
|
|
3744
|
+
created_at?: string | undefined;
|
|
3745
|
+
verified_type?: string | undefined;
|
|
3746
|
+
profile_image_url?: string | undefined;
|
|
3747
|
+
public_metrics?: {
|
|
3748
|
+
followers_count: number;
|
|
3749
|
+
following_count: number;
|
|
3750
|
+
tweet_count: number;
|
|
3751
|
+
listed_count: number;
|
|
3752
|
+
like_count?: number | undefined;
|
|
3753
|
+
} | undefined;
|
|
3754
|
+
}, {
|
|
3755
|
+
id: string;
|
|
3756
|
+
name: string;
|
|
3757
|
+
username: string;
|
|
3758
|
+
verified: boolean;
|
|
3759
|
+
protected: boolean;
|
|
3760
|
+
created_at?: string | undefined;
|
|
3761
|
+
verified_type?: string | undefined;
|
|
3762
|
+
profile_image_url?: string | undefined;
|
|
3763
|
+
public_metrics?: {
|
|
3764
|
+
followers_count: number;
|
|
3765
|
+
following_count: number;
|
|
3766
|
+
tweet_count: number;
|
|
3767
|
+
listed_count: number;
|
|
3768
|
+
like_count?: number | undefined;
|
|
3769
|
+
} | undefined;
|
|
3770
|
+
}>;
|
|
3771
|
+
fetchedAt: z.ZodString;
|
|
3772
|
+
}, "strip", z.ZodTypeAny, {
|
|
3773
|
+
user: {
|
|
3774
|
+
id: string;
|
|
3775
|
+
name: string;
|
|
3776
|
+
username: string;
|
|
3777
|
+
verified: boolean;
|
|
3778
|
+
protected: boolean;
|
|
3779
|
+
created_at?: string | undefined;
|
|
3780
|
+
verified_type?: string | undefined;
|
|
3781
|
+
profile_image_url?: string | undefined;
|
|
3782
|
+
public_metrics?: {
|
|
3783
|
+
followers_count: number;
|
|
3784
|
+
following_count: number;
|
|
3785
|
+
tweet_count: number;
|
|
3786
|
+
listed_count: number;
|
|
3787
|
+
like_count?: number | undefined;
|
|
3788
|
+
} | undefined;
|
|
3789
|
+
};
|
|
3790
|
+
fetchedAt: string;
|
|
3791
|
+
}, {
|
|
3792
|
+
user: {
|
|
3793
|
+
id: string;
|
|
3794
|
+
name: string;
|
|
3795
|
+
username: string;
|
|
3796
|
+
verified: boolean;
|
|
3797
|
+
protected: boolean;
|
|
3798
|
+
created_at?: string | undefined;
|
|
3799
|
+
verified_type?: string | undefined;
|
|
3800
|
+
profile_image_url?: string | undefined;
|
|
3801
|
+
public_metrics?: {
|
|
3802
|
+
followers_count: number;
|
|
3803
|
+
following_count: number;
|
|
3804
|
+
tweet_count: number;
|
|
3805
|
+
listed_count: number;
|
|
3806
|
+
like_count?: number | undefined;
|
|
3807
|
+
} | undefined;
|
|
3808
|
+
};
|
|
3809
|
+
fetchedAt: string;
|
|
3810
|
+
}>>;
|
|
3811
|
+
referral_code: z.ZodString;
|
|
3812
|
+
created_at: z.ZodString;
|
|
3813
|
+
updated_at: z.ZodString;
|
|
3814
|
+
}, "strip", z.ZodTypeAny, {
|
|
3815
|
+
id: string;
|
|
3816
|
+
created_at: string;
|
|
3817
|
+
auth_user_id: string;
|
|
3818
|
+
wallet_address: string | null;
|
|
3819
|
+
github_username: string | null;
|
|
3820
|
+
x_username: string | null;
|
|
3821
|
+
is_validated: boolean;
|
|
3822
|
+
github_data: {
|
|
3823
|
+
username: string;
|
|
3824
|
+
user: {
|
|
3825
|
+
createdAt: string;
|
|
3826
|
+
bio: string | null;
|
|
3827
|
+
websiteUrl: string | null;
|
|
3828
|
+
followers: {
|
|
3829
|
+
totalCount: number;
|
|
3830
|
+
};
|
|
3831
|
+
repositories: {
|
|
3832
|
+
totalCount: number;
|
|
3833
|
+
nodes: {
|
|
3834
|
+
stargazerCount: number;
|
|
3835
|
+
forkCount: number;
|
|
3836
|
+
isFork: boolean;
|
|
3837
|
+
primaryLanguage: {
|
|
3838
|
+
name: string;
|
|
3839
|
+
} | null;
|
|
3840
|
+
pushedAt: string | null;
|
|
3841
|
+
}[];
|
|
3842
|
+
pageInfo: {
|
|
3843
|
+
hasNextPage: boolean;
|
|
3844
|
+
endCursor: string | null;
|
|
3845
|
+
};
|
|
3846
|
+
};
|
|
3847
|
+
contributionsCollection: {
|
|
3848
|
+
totalCommitContributions: number;
|
|
3849
|
+
totalPullRequestContributions: number;
|
|
3850
|
+
totalPullRequestReviewContributions: number;
|
|
3851
|
+
totalIssueContributions: number;
|
|
3852
|
+
contributionCalendar: {
|
|
3853
|
+
totalContributions: number;
|
|
3854
|
+
};
|
|
3855
|
+
};
|
|
3856
|
+
};
|
|
3857
|
+
search: {
|
|
3858
|
+
issues: {
|
|
3859
|
+
issueCount: number;
|
|
3860
|
+
};
|
|
3861
|
+
merged: {
|
|
3862
|
+
issueCount: number;
|
|
3863
|
+
};
|
|
3864
|
+
externalMerged: {
|
|
3865
|
+
issueCount: number;
|
|
3866
|
+
};
|
|
3867
|
+
reviews: {
|
|
3868
|
+
issueCount: number;
|
|
3869
|
+
};
|
|
3870
|
+
};
|
|
3871
|
+
fetchedAt: string;
|
|
3872
|
+
} | null;
|
|
3873
|
+
x_data: {
|
|
3874
|
+
user: {
|
|
3875
|
+
id: string;
|
|
3876
|
+
name: string;
|
|
3877
|
+
username: string;
|
|
3878
|
+
verified: boolean;
|
|
3879
|
+
protected: boolean;
|
|
3880
|
+
created_at?: string | undefined;
|
|
3881
|
+
verified_type?: string | undefined;
|
|
3882
|
+
profile_image_url?: string | undefined;
|
|
3883
|
+
public_metrics?: {
|
|
3884
|
+
followers_count: number;
|
|
3885
|
+
following_count: number;
|
|
3886
|
+
tweet_count: number;
|
|
3887
|
+
listed_count: number;
|
|
3888
|
+
like_count?: number | undefined;
|
|
3889
|
+
} | undefined;
|
|
3890
|
+
};
|
|
3891
|
+
fetchedAt: string;
|
|
3892
|
+
} | null;
|
|
3893
|
+
referral_code: string;
|
|
3894
|
+
updated_at: string;
|
|
3895
|
+
}, {
|
|
3896
|
+
id: string;
|
|
3897
|
+
created_at: string;
|
|
3898
|
+
auth_user_id: string;
|
|
3899
|
+
wallet_address: string | null;
|
|
3900
|
+
github_username: string | null;
|
|
3901
|
+
x_username: string | null;
|
|
3902
|
+
is_validated: boolean;
|
|
3903
|
+
github_data: {
|
|
3904
|
+
username: string;
|
|
3905
|
+
user: {
|
|
3906
|
+
createdAt: string;
|
|
3907
|
+
bio: string | null;
|
|
3908
|
+
websiteUrl: string | null;
|
|
3909
|
+
followers: {
|
|
3910
|
+
totalCount: number;
|
|
3911
|
+
};
|
|
3912
|
+
repositories: {
|
|
3913
|
+
totalCount: number;
|
|
3914
|
+
nodes: {
|
|
3915
|
+
stargazerCount: number;
|
|
3916
|
+
forkCount: number;
|
|
3917
|
+
isFork: boolean;
|
|
3918
|
+
primaryLanguage: {
|
|
3919
|
+
name: string;
|
|
3920
|
+
} | null;
|
|
3921
|
+
pushedAt: string | null;
|
|
3922
|
+
}[];
|
|
3923
|
+
pageInfo: {
|
|
3924
|
+
hasNextPage: boolean;
|
|
3925
|
+
endCursor: string | null;
|
|
3926
|
+
};
|
|
3927
|
+
};
|
|
3928
|
+
contributionsCollection: {
|
|
3929
|
+
totalCommitContributions: number;
|
|
3930
|
+
totalPullRequestContributions: number;
|
|
3931
|
+
totalPullRequestReviewContributions: number;
|
|
3932
|
+
totalIssueContributions: number;
|
|
3933
|
+
contributionCalendar: {
|
|
3934
|
+
totalContributions: number;
|
|
3935
|
+
};
|
|
3936
|
+
};
|
|
3937
|
+
};
|
|
3938
|
+
search: {
|
|
3939
|
+
issues: {
|
|
3940
|
+
issueCount: number;
|
|
3941
|
+
};
|
|
3942
|
+
merged: {
|
|
3943
|
+
issueCount: number;
|
|
3944
|
+
};
|
|
3945
|
+
externalMerged: {
|
|
3946
|
+
issueCount: number;
|
|
3947
|
+
};
|
|
3948
|
+
reviews: {
|
|
3949
|
+
issueCount: number;
|
|
3950
|
+
};
|
|
3951
|
+
};
|
|
3952
|
+
fetchedAt: string;
|
|
3953
|
+
} | null;
|
|
3954
|
+
x_data: {
|
|
3955
|
+
user: {
|
|
3956
|
+
id: string;
|
|
3957
|
+
name: string;
|
|
3958
|
+
username: string;
|
|
3959
|
+
verified: boolean;
|
|
3960
|
+
protected: boolean;
|
|
3961
|
+
created_at?: string | undefined;
|
|
3962
|
+
verified_type?: string | undefined;
|
|
3963
|
+
profile_image_url?: string | undefined;
|
|
3964
|
+
public_metrics?: {
|
|
3965
|
+
followers_count: number;
|
|
3966
|
+
following_count: number;
|
|
3967
|
+
tweet_count: number;
|
|
3968
|
+
listed_count: number;
|
|
3969
|
+
like_count?: number | undefined;
|
|
3970
|
+
} | undefined;
|
|
3971
|
+
};
|
|
3972
|
+
fetchedAt: string;
|
|
3973
|
+
} | null;
|
|
3974
|
+
referral_code: string;
|
|
3975
|
+
updated_at: string;
|
|
3976
|
+
}>;
|
|
2756
3977
|
}, "strip", z.ZodTypeAny, {
|
|
2757
|
-
|
|
3978
|
+
result: {
|
|
3979
|
+
id: string;
|
|
3980
|
+
created_at: string;
|
|
3981
|
+
auth_user_id: string;
|
|
3982
|
+
wallet_address: string | null;
|
|
3983
|
+
github_username: string | null;
|
|
3984
|
+
x_username: string | null;
|
|
3985
|
+
is_validated: boolean;
|
|
3986
|
+
github_data: {
|
|
3987
|
+
username: string;
|
|
3988
|
+
user: {
|
|
3989
|
+
createdAt: string;
|
|
3990
|
+
bio: string | null;
|
|
3991
|
+
websiteUrl: string | null;
|
|
3992
|
+
followers: {
|
|
3993
|
+
totalCount: number;
|
|
3994
|
+
};
|
|
3995
|
+
repositories: {
|
|
3996
|
+
totalCount: number;
|
|
3997
|
+
nodes: {
|
|
3998
|
+
stargazerCount: number;
|
|
3999
|
+
forkCount: number;
|
|
4000
|
+
isFork: boolean;
|
|
4001
|
+
primaryLanguage: {
|
|
4002
|
+
name: string;
|
|
4003
|
+
} | null;
|
|
4004
|
+
pushedAt: string | null;
|
|
4005
|
+
}[];
|
|
4006
|
+
pageInfo: {
|
|
4007
|
+
hasNextPage: boolean;
|
|
4008
|
+
endCursor: string | null;
|
|
4009
|
+
};
|
|
4010
|
+
};
|
|
4011
|
+
contributionsCollection: {
|
|
4012
|
+
totalCommitContributions: number;
|
|
4013
|
+
totalPullRequestContributions: number;
|
|
4014
|
+
totalPullRequestReviewContributions: number;
|
|
4015
|
+
totalIssueContributions: number;
|
|
4016
|
+
contributionCalendar: {
|
|
4017
|
+
totalContributions: number;
|
|
4018
|
+
};
|
|
4019
|
+
};
|
|
4020
|
+
};
|
|
4021
|
+
search: {
|
|
4022
|
+
issues: {
|
|
4023
|
+
issueCount: number;
|
|
4024
|
+
};
|
|
4025
|
+
merged: {
|
|
4026
|
+
issueCount: number;
|
|
4027
|
+
};
|
|
4028
|
+
externalMerged: {
|
|
4029
|
+
issueCount: number;
|
|
4030
|
+
};
|
|
4031
|
+
reviews: {
|
|
4032
|
+
issueCount: number;
|
|
4033
|
+
};
|
|
4034
|
+
};
|
|
4035
|
+
fetchedAt: string;
|
|
4036
|
+
} | null;
|
|
4037
|
+
x_data: {
|
|
4038
|
+
user: {
|
|
4039
|
+
id: string;
|
|
4040
|
+
name: string;
|
|
4041
|
+
username: string;
|
|
4042
|
+
verified: boolean;
|
|
4043
|
+
protected: boolean;
|
|
4044
|
+
created_at?: string | undefined;
|
|
4045
|
+
verified_type?: string | undefined;
|
|
4046
|
+
profile_image_url?: string | undefined;
|
|
4047
|
+
public_metrics?: {
|
|
4048
|
+
followers_count: number;
|
|
4049
|
+
following_count: number;
|
|
4050
|
+
tweet_count: number;
|
|
4051
|
+
listed_count: number;
|
|
4052
|
+
like_count?: number | undefined;
|
|
4053
|
+
} | undefined;
|
|
4054
|
+
};
|
|
4055
|
+
fetchedAt: string;
|
|
4056
|
+
} | null;
|
|
4057
|
+
referral_code: string;
|
|
4058
|
+
updated_at: string;
|
|
4059
|
+
};
|
|
2758
4060
|
}, {
|
|
2759
|
-
|
|
4061
|
+
result: {
|
|
4062
|
+
id: string;
|
|
4063
|
+
created_at: string;
|
|
4064
|
+
auth_user_id: string;
|
|
4065
|
+
wallet_address: string | null;
|
|
4066
|
+
github_username: string | null;
|
|
4067
|
+
x_username: string | null;
|
|
4068
|
+
is_validated: boolean;
|
|
4069
|
+
github_data: {
|
|
4070
|
+
username: string;
|
|
4071
|
+
user: {
|
|
4072
|
+
createdAt: string;
|
|
4073
|
+
bio: string | null;
|
|
4074
|
+
websiteUrl: string | null;
|
|
4075
|
+
followers: {
|
|
4076
|
+
totalCount: number;
|
|
4077
|
+
};
|
|
4078
|
+
repositories: {
|
|
4079
|
+
totalCount: number;
|
|
4080
|
+
nodes: {
|
|
4081
|
+
stargazerCount: number;
|
|
4082
|
+
forkCount: number;
|
|
4083
|
+
isFork: boolean;
|
|
4084
|
+
primaryLanguage: {
|
|
4085
|
+
name: string;
|
|
4086
|
+
} | null;
|
|
4087
|
+
pushedAt: string | null;
|
|
4088
|
+
}[];
|
|
4089
|
+
pageInfo: {
|
|
4090
|
+
hasNextPage: boolean;
|
|
4091
|
+
endCursor: string | null;
|
|
4092
|
+
};
|
|
4093
|
+
};
|
|
4094
|
+
contributionsCollection: {
|
|
4095
|
+
totalCommitContributions: number;
|
|
4096
|
+
totalPullRequestContributions: number;
|
|
4097
|
+
totalPullRequestReviewContributions: number;
|
|
4098
|
+
totalIssueContributions: number;
|
|
4099
|
+
contributionCalendar: {
|
|
4100
|
+
totalContributions: number;
|
|
4101
|
+
};
|
|
4102
|
+
};
|
|
4103
|
+
};
|
|
4104
|
+
search: {
|
|
4105
|
+
issues: {
|
|
4106
|
+
issueCount: number;
|
|
4107
|
+
};
|
|
4108
|
+
merged: {
|
|
4109
|
+
issueCount: number;
|
|
4110
|
+
};
|
|
4111
|
+
externalMerged: {
|
|
4112
|
+
issueCount: number;
|
|
4113
|
+
};
|
|
4114
|
+
reviews: {
|
|
4115
|
+
issueCount: number;
|
|
4116
|
+
};
|
|
4117
|
+
};
|
|
4118
|
+
fetchedAt: string;
|
|
4119
|
+
} | null;
|
|
4120
|
+
x_data: {
|
|
4121
|
+
user: {
|
|
4122
|
+
id: string;
|
|
4123
|
+
name: string;
|
|
4124
|
+
username: string;
|
|
4125
|
+
verified: boolean;
|
|
4126
|
+
protected: boolean;
|
|
4127
|
+
created_at?: string | undefined;
|
|
4128
|
+
verified_type?: string | undefined;
|
|
4129
|
+
profile_image_url?: string | undefined;
|
|
4130
|
+
public_metrics?: {
|
|
4131
|
+
followers_count: number;
|
|
4132
|
+
following_count: number;
|
|
4133
|
+
tweet_count: number;
|
|
4134
|
+
listed_count: number;
|
|
4135
|
+
like_count?: number | undefined;
|
|
4136
|
+
} | undefined;
|
|
4137
|
+
};
|
|
4138
|
+
fetchedAt: string;
|
|
4139
|
+
} | null;
|
|
4140
|
+
referral_code: string;
|
|
4141
|
+
updated_at: string;
|
|
4142
|
+
};
|
|
4143
|
+
}>, Record<never, never>, Record<never, never>>;
|
|
4144
|
+
list: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
4145
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
4146
|
+
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
4147
|
+
orderBy: z.ZodOptional<z.ZodNativeEnum<typeof BuilderOrderBy>>;
|
|
4148
|
+
minFollowers: z.ZodOptional<z.ZodNumber>;
|
|
4149
|
+
minRepos: z.ZodOptional<z.ZodNumber>;
|
|
4150
|
+
minContributions: z.ZodOptional<z.ZodNumber>;
|
|
4151
|
+
}, "strip", z.ZodTypeAny, {
|
|
4152
|
+
limit: number;
|
|
4153
|
+
offset: number;
|
|
4154
|
+
orderBy?: BuilderOrderBy | undefined;
|
|
4155
|
+
minFollowers?: number | undefined;
|
|
4156
|
+
minRepos?: number | undefined;
|
|
4157
|
+
minContributions?: number | undefined;
|
|
4158
|
+
}, {
|
|
4159
|
+
limit?: number | undefined;
|
|
4160
|
+
offset?: number | undefined;
|
|
4161
|
+
orderBy?: BuilderOrderBy | undefined;
|
|
4162
|
+
minFollowers?: number | undefined;
|
|
4163
|
+
minRepos?: number | undefined;
|
|
4164
|
+
minContributions?: number | undefined;
|
|
2760
4165
|
}>, z.ZodObject<{
|
|
2761
|
-
result: z.ZodObject<{
|
|
4166
|
+
result: z.ZodArray<z.ZodObject<{
|
|
2762
4167
|
id: z.ZodString;
|
|
2763
|
-
auth_user_id: z.ZodString;
|
|
2764
4168
|
wallet_address: z.ZodNullable<z.ZodString>;
|
|
2765
4169
|
github_username: z.ZodNullable<z.ZodString>;
|
|
2766
4170
|
x_username: z.ZodNullable<z.ZodString>;
|
|
@@ -3204,13 +4608,10 @@ declare const builderContract: {
|
|
|
3204
4608
|
};
|
|
3205
4609
|
fetchedAt: string;
|
|
3206
4610
|
}>>;
|
|
3207
|
-
referral_code: z.ZodString;
|
|
3208
4611
|
created_at: z.ZodString;
|
|
3209
|
-
updated_at: z.ZodString;
|
|
3210
4612
|
}, "strip", z.ZodTypeAny, {
|
|
3211
4613
|
id: string;
|
|
3212
4614
|
created_at: string;
|
|
3213
|
-
auth_user_id: string;
|
|
3214
4615
|
wallet_address: string | null;
|
|
3215
4616
|
github_username: string | null;
|
|
3216
4617
|
x_username: string | null;
|
|
@@ -3286,12 +4687,9 @@ declare const builderContract: {
|
|
|
3286
4687
|
};
|
|
3287
4688
|
fetchedAt: string;
|
|
3288
4689
|
} | null;
|
|
3289
|
-
referral_code: string;
|
|
3290
|
-
updated_at: string;
|
|
3291
4690
|
}, {
|
|
3292
4691
|
id: string;
|
|
3293
4692
|
created_at: string;
|
|
3294
|
-
auth_user_id: string;
|
|
3295
4693
|
wallet_address: string | null;
|
|
3296
4694
|
github_username: string | null;
|
|
3297
4695
|
x_username: string | null;
|
|
@@ -3367,14 +4765,12 @@ declare const builderContract: {
|
|
|
3367
4765
|
};
|
|
3368
4766
|
fetchedAt: string;
|
|
3369
4767
|
} | null;
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
}>;
|
|
4768
|
+
}>, "many">;
|
|
4769
|
+
total: z.ZodNumber;
|
|
3373
4770
|
}, "strip", z.ZodTypeAny, {
|
|
3374
4771
|
result: {
|
|
3375
4772
|
id: string;
|
|
3376
4773
|
created_at: string;
|
|
3377
|
-
auth_user_id: string;
|
|
3378
4774
|
wallet_address: string | null;
|
|
3379
4775
|
github_username: string | null;
|
|
3380
4776
|
x_username: string | null;
|
|
@@ -3450,14 +4846,12 @@ declare const builderContract: {
|
|
|
3450
4846
|
};
|
|
3451
4847
|
fetchedAt: string;
|
|
3452
4848
|
} | null;
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
};
|
|
4849
|
+
}[];
|
|
4850
|
+
total: number;
|
|
3456
4851
|
}, {
|
|
3457
4852
|
result: {
|
|
3458
4853
|
id: string;
|
|
3459
4854
|
created_at: string;
|
|
3460
|
-
auth_user_id: string;
|
|
3461
4855
|
wallet_address: string | null;
|
|
3462
4856
|
github_username: string | null;
|
|
3463
4857
|
x_username: string | null;
|
|
@@ -3533,9 +4927,8 @@ declare const builderContract: {
|
|
|
3533
4927
|
};
|
|
3534
4928
|
fetchedAt: string;
|
|
3535
4929
|
} | null;
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
};
|
|
4930
|
+
}[];
|
|
4931
|
+
total: number;
|
|
3539
4932
|
}>, Record<never, never>, Record<never, never>>;
|
|
3540
4933
|
getByIdentity: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
3541
4934
|
identity: z.ZodString;
|
|
@@ -5734,6 +7127,7 @@ declare const builderContract: {
|
|
|
5734
7127
|
}>, "many">;
|
|
5735
7128
|
total: z.ZodNumber;
|
|
5736
7129
|
}, "strip", z.ZodTypeAny, {
|
|
7130
|
+
total: number;
|
|
5737
7131
|
referrals: {
|
|
5738
7132
|
id: string;
|
|
5739
7133
|
created_at: string;
|
|
@@ -5741,8 +7135,8 @@ declare const builderContract: {
|
|
|
5741
7135
|
github_username: string | null;
|
|
5742
7136
|
x_username: string | null;
|
|
5743
7137
|
}[];
|
|
5744
|
-
total: number;
|
|
5745
7138
|
}, {
|
|
7139
|
+
total: number;
|
|
5746
7140
|
referrals: {
|
|
5747
7141
|
id: string;
|
|
5748
7142
|
created_at: string;
|
|
@@ -5750,10 +7144,10 @@ declare const builderContract: {
|
|
|
5750
7144
|
github_username: string | null;
|
|
5751
7145
|
x_username: string | null;
|
|
5752
7146
|
}[];
|
|
5753
|
-
total: number;
|
|
5754
7147
|
}>;
|
|
5755
7148
|
}, "strip", z.ZodTypeAny, {
|
|
5756
7149
|
result: {
|
|
7150
|
+
total: number;
|
|
5757
7151
|
referrals: {
|
|
5758
7152
|
id: string;
|
|
5759
7153
|
created_at: string;
|
|
@@ -5761,10 +7155,10 @@ declare const builderContract: {
|
|
|
5761
7155
|
github_username: string | null;
|
|
5762
7156
|
x_username: string | null;
|
|
5763
7157
|
}[];
|
|
5764
|
-
total: number;
|
|
5765
7158
|
};
|
|
5766
7159
|
}, {
|
|
5767
7160
|
result: {
|
|
7161
|
+
total: number;
|
|
5768
7162
|
referrals: {
|
|
5769
7163
|
id: string;
|
|
5770
7164
|
created_at: string;
|
|
@@ -5772,7 +7166,6 @@ declare const builderContract: {
|
|
|
5772
7166
|
github_username: string | null;
|
|
5773
7167
|
x_username: string | null;
|
|
5774
7168
|
}[];
|
|
5775
|
-
total: number;
|
|
5776
7169
|
};
|
|
5777
7170
|
}>, Record<never, never>, Record<never, never>>;
|
|
5778
7171
|
applyReferralCode: import("@orpc/contract", { with: { "resolution-mode": "import" } }).ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
@@ -5799,4 +7192,4 @@ declare const builderContract: {
|
|
|
5799
7192
|
};
|
|
5800
7193
|
}>, Record<never, never>, Record<never, never>>;
|
|
5801
7194
|
};
|
|
5802
|
-
export { builderContract, BuilderSchema, BuilderResponseSchema, BuilderGitHubDataSchema, BuilderXDataSchema, CoinSchema, CoinWithTypeSchema, BuilderProfileSchema, LaunchCoinInputSchema, LaunchCoinResponseSchema, ReferralProfileSchema, ReferrerPublicProfileSchema };
|
|
7195
|
+
export { builderContract, BuilderSchema, BuilderResponseSchema, BuilderGitHubDataSchema, BuilderXDataSchema, BuilderListItemSchema, CoinSchema, CoinWithTypeSchema, BuilderProfileSchema, LaunchCoinInputSchema, LaunchCoinResponseSchema, ReferralProfileSchema, ReferrerPublicProfileSchema, };
|