|
1 | | -# sequence-builder v0.1.0 a1f683e66f5edd23bf2a91a12856377ad2e0ad5d |
| 1 | +# sequence-builder v0.1.0 425b729728c2cca8988a1a5dfc07b2c5d6c2c6f5 |
2 | 2 | # -- |
3 | 3 | # Code generated by webrpc-gen@v0.26.1 with openapi generator; DO NOT EDIT |
4 | 4 | # |
@@ -884,6 +884,24 @@ components: |
884 | 884 | type: string |
885 | 885 | region: |
886 | 886 | type: string |
| 887 | + Image: |
| 888 | + type: object |
| 889 | + required: |
| 890 | + - src |
| 891 | + properties: |
| 892 | + src: |
| 893 | + type: string |
| 894 | + width: |
| 895 | + type: string |
| 896 | + height: |
| 897 | + type: string |
| 898 | + alt: |
| 899 | + type: string |
| 900 | + displayOptions: |
| 901 | + type: object |
| 902 | + description: 'map<string,string>' |
| 903 | + additionalProperties: |
| 904 | + type: string |
887 | 905 | SubscriptionProvider: |
888 | 906 | type: string |
889 | 907 | description: Represented as string on the server side |
@@ -2390,6 +2408,29 @@ components: |
2390 | 2408 | type: object |
2391 | 2409 | createdAt: |
2392 | 2410 | type: string |
| 2411 | + ProjectWallet: |
| 2412 | + type: object |
| 2413 | + required: |
| 2414 | + - projectId |
| 2415 | + - title |
| 2416 | + - lightSignInIcon |
| 2417 | + - darkSignInIcon |
| 2418 | + - modalPosition |
| 2419 | + properties: |
| 2420 | + projectId: |
| 2421 | + type: number |
| 2422 | + title: |
| 2423 | + type: string |
| 2424 | + lightSignInIcon: |
| 2425 | + type: string |
| 2426 | + darkSignInIcon: |
| 2427 | + type: string |
| 2428 | + modalPosition: |
| 2429 | + type: string |
| 2430 | + createdAt: |
| 2431 | + type: string |
| 2432 | + updatedAt: |
| 2433 | + type: string |
2393 | 2434 | DateInterval: |
2394 | 2435 | type: string |
2395 | 2436 | description: Represented as uint16 on the server side |
@@ -2600,12 +2641,15 @@ components: |
2600 | 2641 | - LIGHT |
2601 | 2642 | - DARK |
2602 | 2643 | - CUSTOM |
2603 | | - CredentialsProvider: |
| 2644 | + LoginProviderType: |
2604 | 2645 | type: string |
2605 | 2646 | description: Represented as string on the server side |
2606 | 2647 | enum: |
2607 | 2648 | - APPLE |
2608 | 2649 | - GOOGLE |
| 2650 | + - EMAIL |
| 2651 | + - PASSKEY |
| 2652 | + - PRIVATE_KEY |
2609 | 2653 | Ecosystem: |
2610 | 2654 | type: object |
2611 | 2655 | required: |
@@ -2797,18 +2841,168 @@ components: |
2797 | 2841 | type: string |
2798 | 2842 | updatedAt: |
2799 | 2843 | type: string |
2800 | | - EcosystemCredential: |
| 2844 | + LoginProvider: |
2801 | 2845 | type: object |
2802 | 2846 | required: |
2803 | | - - provider |
2804 | | - - clientId |
| 2847 | + - type |
2805 | 2848 | properties: |
2806 | | - provider: |
2807 | | - $ref: '#/components/schemas/CredentialsProvider' |
| 2849 | + type: |
| 2850 | + $ref: '#/components/schemas/LoginProviderType' |
2808 | 2851 | clientId: |
2809 | 2852 | type: string |
2810 | 2853 | updatedAt: |
2811 | 2854 | type: string |
| 2855 | + WalletCustomTheme: |
| 2856 | + type: object |
| 2857 | + required: |
| 2858 | + - fileHeaderLogo |
| 2859 | + - fileAuthLogo |
| 2860 | + - fileAuthCover |
| 2861 | + - fileBackgroundImage |
| 2862 | + properties: |
| 2863 | + fileHeaderLogo: |
| 2864 | + $ref: '#/components/schemas/Image' |
| 2865 | + fileAuthLogo: |
| 2866 | + $ref: '#/components/schemas/Image' |
| 2867 | + fileAuthCover: |
| 2868 | + $ref: '#/components/schemas/Image' |
| 2869 | + fileBackgroundImage: |
| 2870 | + $ref: '#/components/schemas/Image' |
| 2871 | + colors: |
| 2872 | + type: object |
| 2873 | + description: 'map<string,string>' |
| 2874 | + additionalProperties: |
| 2875 | + type: string |
| 2876 | + WalletThemes: |
| 2877 | + type: object |
| 2878 | + required: |
| 2879 | + - light |
| 2880 | + - dark |
| 2881 | + properties: |
| 2882 | + light: |
| 2883 | + $ref: '#/components/schemas/WalletCustomTheme' |
| 2884 | + dark: |
| 2885 | + $ref: '#/components/schemas/WalletCustomTheme' |
| 2886 | + DiscoveryCategory: |
| 2887 | + type: object |
| 2888 | + required: |
| 2889 | + - label |
| 2890 | + - tag |
| 2891 | + - private |
| 2892 | + properties: |
| 2893 | + label: |
| 2894 | + type: string |
| 2895 | + tag: |
| 2896 | + type: string |
| 2897 | + private: |
| 2898 | + type: boolean |
| 2899 | + DiscoveryApp: |
| 2900 | + type: object |
| 2901 | + required: |
| 2902 | + - name |
| 2903 | + - description |
| 2904 | + - coverImage |
| 2905 | + - url |
| 2906 | + - categoryTag |
| 2907 | + - chainIds |
| 2908 | + properties: |
| 2909 | + name: |
| 2910 | + type: string |
| 2911 | + description: |
| 2912 | + type: string |
| 2913 | + coverImage: |
| 2914 | + $ref: '#/components/schemas/Image' |
| 2915 | + url: |
| 2916 | + type: string |
| 2917 | + categoryTag: |
| 2918 | + type: string |
| 2919 | + chainIds: |
| 2920 | + type: array |
| 2921 | + description: '[]uint64' |
| 2922 | + items: |
| 2923 | + type: number |
| 2924 | + DiscoverySection: |
| 2925 | + type: object |
| 2926 | + required: |
| 2927 | + - apps |
| 2928 | + - private |
| 2929 | + - categories |
| 2930 | + - banners |
| 2931 | + properties: |
| 2932 | + apps: |
| 2933 | + type: array |
| 2934 | + description: '[]DiscoveryApp' |
| 2935 | + items: |
| 2936 | + $ref: '#/components/schemas/DiscoveryApp' |
| 2937 | + private: |
| 2938 | + type: boolean |
| 2939 | + categories: |
| 2940 | + type: array |
| 2941 | + description: '[]DiscoveryCategory' |
| 2942 | + items: |
| 2943 | + $ref: '#/components/schemas/DiscoveryCategory' |
| 2944 | + banners: |
| 2945 | + type: array |
| 2946 | + description: '[]DiscoveryApp' |
| 2947 | + items: |
| 2948 | + $ref: '#/components/schemas/DiscoveryApp' |
| 2949 | + EcosystemWalletConfig: |
| 2950 | + type: object |
| 2951 | + required: |
| 2952 | + - ecosystemId |
| 2953 | + - name |
| 2954 | + - description |
| 2955 | + - url |
| 2956 | + - email |
| 2957 | + - defaultTheme |
| 2958 | + - themes |
| 2959 | + - defaultCurrency |
| 2960 | + - watchedWallets |
| 2961 | + - supportedChains |
| 2962 | + - enabledProviders |
| 2963 | + - providerConfig |
| 2964 | + - createdAt |
| 2965 | + - updatedAt |
| 2966 | + properties: |
| 2967 | + ecosystemId: |
| 2968 | + type: number |
| 2969 | + name: |
| 2970 | + type: string |
| 2971 | + description: |
| 2972 | + type: string |
| 2973 | + url: |
| 2974 | + type: string |
| 2975 | + email: |
| 2976 | + type: string |
| 2977 | + defaultTheme: |
| 2978 | + type: string |
| 2979 | + themes: |
| 2980 | + $ref: '#/components/schemas/WalletThemes' |
| 2981 | + defaultCurrency: |
| 2982 | + type: string |
| 2983 | + watchedWallets: |
| 2984 | + type: boolean |
| 2985 | + supportedChains: |
| 2986 | + type: array |
| 2987 | + description: '[]uint64' |
| 2988 | + items: |
| 2989 | + type: number |
| 2990 | + enabledProviders: |
| 2991 | + type: array |
| 2992 | + description: '[]LoginProviderType' |
| 2993 | + items: |
| 2994 | + $ref: '#/components/schemas/LoginProviderType' |
| 2995 | + providerConfig: |
| 2996 | + type: array |
| 2997 | + description: '[]LoginProvider' |
| 2998 | + items: |
| 2999 | + $ref: '#/components/schemas/LoginProvider' |
| 3000 | + discovery: |
| 3001 | + $ref: '#/components/schemas/DiscoverySection' |
| 3002 | + createdAt: |
| 3003 | + type: string |
| 3004 | + updatedAt: |
| 3005 | + type: string |
2812 | 3006 | MarketplaceWalletType: |
2813 | 3007 | type: string |
2814 | 3008 | description: Represented as uint8 on the server side |
|
0 commit comments