|
1 | | -# marketplace-api e46e36f3ef96cc3b2e66d8249f9705a737495019 |
| 1 | +# marketplace-api 69b867ed95fe7d6108abc2b1fba773d16856542d |
2 | 2 | # -- |
3 | 3 | # Code generated by [email protected] with openapi generator; DO NOT EDIT |
4 | 4 | # |
@@ -1933,6 +1933,20 @@ components: |
1933 | 1933 | type: string |
1934 | 1934 | contractAddress: |
1935 | 1935 | type: string |
| 1936 | + Marketplace_GetCollectionActiveListingsCurrencies_Request: |
| 1937 | + type: object |
| 1938 | + properties: |
| 1939 | + chainId: |
| 1940 | + type: string |
| 1941 | + contractAddress: |
| 1942 | + type: string |
| 1943 | + Marketplace_GetCollectionActiveOffersCurrencies_Request: |
| 1944 | + type: object |
| 1945 | + properties: |
| 1946 | + chainId: |
| 1947 | + type: string |
| 1948 | + contractAddress: |
| 1949 | + type: string |
1936 | 1950 | Marketplace_GetCollectible_Request: |
1937 | 1951 | type: object |
1938 | 1952 | properties: |
@@ -2452,6 +2466,22 @@ components: |
2452 | 2466 | properties: |
2453 | 2467 | collection: |
2454 | 2468 | $ref: '#/components/schemas/Collection' |
| 2469 | + Marketplace_GetCollectionActiveListingsCurrencies_Response: |
| 2470 | + type: object |
| 2471 | + properties: |
| 2472 | + currencies: |
| 2473 | + type: array |
| 2474 | + description: '[]Currency' |
| 2475 | + items: |
| 2476 | + $ref: '#/components/schemas/Currency' |
| 2477 | + Marketplace_GetCollectionActiveOffersCurrencies_Response: |
| 2478 | + type: object |
| 2479 | + properties: |
| 2480 | + currencies: |
| 2481 | + type: array |
| 2482 | + description: '[]Currency' |
| 2483 | + items: |
| 2484 | + $ref: '#/components/schemas/Currency' |
2455 | 2485 | Marketplace_GetCollectible_Response: |
2456 | 2486 | type: object |
2457 | 2487 | properties: |
@@ -2850,6 +2880,110 @@ paths: |
2850 | 2880 | - $ref: '#/components/schemas/ErrorWebrpcServerPanic' |
2851 | 2881 | - $ref: '#/components/schemas/ErrorWebrpcInternalError' |
2852 | 2882 | - $ref: '#/components/schemas/ErrorNotImplemented' |
| 2883 | + /rpc/Marketplace/GetCollectionActiveListingsCurrencies: |
| 2884 | + post: |
| 2885 | + tags: ["Marketplace"] |
| 2886 | + summary: "" |
| 2887 | + security: |
| 2888 | + - Public+: [] |
| 2889 | + requestBody: |
| 2890 | + content: |
| 2891 | + application/json: |
| 2892 | + schema: |
| 2893 | + $ref: '#/components/schemas/Marketplace_GetCollectionActiveListingsCurrencies_Request' |
| 2894 | + responses: |
| 2895 | + '200': |
| 2896 | + description: OK |
| 2897 | + content: |
| 2898 | + application/json: |
| 2899 | + schema: |
| 2900 | + $ref: '#/components/schemas/Marketplace_GetCollectionActiveListingsCurrencies_Response' |
| 2901 | + '4XX': |
| 2902 | + description: Client error |
| 2903 | + content: |
| 2904 | + application/json: |
| 2905 | + schema: |
| 2906 | + oneOf: |
| 2907 | + - $ref: '#/components/schemas/ErrorWebrpcEndpoint' |
| 2908 | + - $ref: '#/components/schemas/ErrorWebrpcRequestFailed' |
| 2909 | + - $ref: '#/components/schemas/ErrorWebrpcBadRoute' |
| 2910 | + - $ref: '#/components/schemas/ErrorWebrpcBadMethod' |
| 2911 | + - $ref: '#/components/schemas/ErrorWebrpcBadRequest' |
| 2912 | + - $ref: '#/components/schemas/ErrorWebrpcClientDisconnected' |
| 2913 | + - $ref: '#/components/schemas/ErrorWebrpcStreamLost' |
| 2914 | + - $ref: '#/components/schemas/ErrorUnauthorized' |
| 2915 | + - $ref: '#/components/schemas/ErrorPermissionDenied' |
| 2916 | + - $ref: '#/components/schemas/ErrorSessionExpired' |
| 2917 | + - $ref: '#/components/schemas/ErrorMethodNotFound' |
| 2918 | + - $ref: '#/components/schemas/ErrorTimeout' |
| 2919 | + - $ref: '#/components/schemas/ErrorInvalidArgument' |
| 2920 | + - $ref: '#/components/schemas/ErrorNotFound' |
| 2921 | + - $ref: '#/components/schemas/ErrorUserNotFound' |
| 2922 | + - $ref: '#/components/schemas/ErrorProjectNotFound' |
| 2923 | + - $ref: '#/components/schemas/ErrorInvalidTier' |
| 2924 | + - $ref: '#/components/schemas/ErrorProjectLimitReached' |
| 2925 | + '5XX': |
| 2926 | + description: Server error |
| 2927 | + content: |
| 2928 | + application/json: |
| 2929 | + schema: |
| 2930 | + oneOf: |
| 2931 | + - $ref: '#/components/schemas/ErrorWebrpcBadResponse' |
| 2932 | + - $ref: '#/components/schemas/ErrorWebrpcServerPanic' |
| 2933 | + - $ref: '#/components/schemas/ErrorWebrpcInternalError' |
| 2934 | + - $ref: '#/components/schemas/ErrorNotImplemented' |
| 2935 | + /rpc/Marketplace/GetCollectionActiveOffersCurrencies: |
| 2936 | + post: |
| 2937 | + tags: ["Marketplace"] |
| 2938 | + summary: "" |
| 2939 | + security: |
| 2940 | + - Public+: [] |
| 2941 | + requestBody: |
| 2942 | + content: |
| 2943 | + application/json: |
| 2944 | + schema: |
| 2945 | + $ref: '#/components/schemas/Marketplace_GetCollectionActiveOffersCurrencies_Request' |
| 2946 | + responses: |
| 2947 | + '200': |
| 2948 | + description: OK |
| 2949 | + content: |
| 2950 | + application/json: |
| 2951 | + schema: |
| 2952 | + $ref: '#/components/schemas/Marketplace_GetCollectionActiveOffersCurrencies_Response' |
| 2953 | + '4XX': |
| 2954 | + description: Client error |
| 2955 | + content: |
| 2956 | + application/json: |
| 2957 | + schema: |
| 2958 | + oneOf: |
| 2959 | + - $ref: '#/components/schemas/ErrorWebrpcEndpoint' |
| 2960 | + - $ref: '#/components/schemas/ErrorWebrpcRequestFailed' |
| 2961 | + - $ref: '#/components/schemas/ErrorWebrpcBadRoute' |
| 2962 | + - $ref: '#/components/schemas/ErrorWebrpcBadMethod' |
| 2963 | + - $ref: '#/components/schemas/ErrorWebrpcBadRequest' |
| 2964 | + - $ref: '#/components/schemas/ErrorWebrpcClientDisconnected' |
| 2965 | + - $ref: '#/components/schemas/ErrorWebrpcStreamLost' |
| 2966 | + - $ref: '#/components/schemas/ErrorUnauthorized' |
| 2967 | + - $ref: '#/components/schemas/ErrorPermissionDenied' |
| 2968 | + - $ref: '#/components/schemas/ErrorSessionExpired' |
| 2969 | + - $ref: '#/components/schemas/ErrorMethodNotFound' |
| 2970 | + - $ref: '#/components/schemas/ErrorTimeout' |
| 2971 | + - $ref: '#/components/schemas/ErrorInvalidArgument' |
| 2972 | + - $ref: '#/components/schemas/ErrorNotFound' |
| 2973 | + - $ref: '#/components/schemas/ErrorUserNotFound' |
| 2974 | + - $ref: '#/components/schemas/ErrorProjectNotFound' |
| 2975 | + - $ref: '#/components/schemas/ErrorInvalidTier' |
| 2976 | + - $ref: '#/components/schemas/ErrorProjectLimitReached' |
| 2977 | + '5XX': |
| 2978 | + description: Server error |
| 2979 | + content: |
| 2980 | + application/json: |
| 2981 | + schema: |
| 2982 | + oneOf: |
| 2983 | + - $ref: '#/components/schemas/ErrorWebrpcBadResponse' |
| 2984 | + - $ref: '#/components/schemas/ErrorWebrpcServerPanic' |
| 2985 | + - $ref: '#/components/schemas/ErrorWebrpcInternalError' |
| 2986 | + - $ref: '#/components/schemas/ErrorNotImplemented' |
2853 | 2987 | /rpc/Marketplace/GetCollectible: |
2854 | 2988 | post: |
2855 | 2989 | tags: ["Marketplace"] |
|
0 commit comments