feat: marketplace types

This commit is contained in:
StyleZhang
2024-10-25 11:15:32 +08:00
parent 0ef35a0ee0
commit ae00211691
3 changed files with 32 additions and 3 deletions

View File

@ -1,11 +1,9 @@
'use client'
import Card from '@/app/components/plugins/card'
import CardMoreInfo from '@/app/components/plugins/card/card-more-info'
import { toolNotion } from '@/app/components/plugins/card/card-mock'
import { getLocaleOnServer } from '@/i18n/server'
const List = () => {
const locale = getLocaleOnServer()
return (
<div className='px-12 py-2 bg-background-default-subtle'>
<div className='py-3'>

View File

@ -0,0 +1,19 @@
import type { Plugin } from '../types'
export type MarketplaceCollection = {
name: string
description: string
rule: string
created_at: string
updated_at: string
}
export type MarketplaceCollectionsResponse = {
collections: MarketplaceCollection[]
total: number
}
export type MarketplaceCollectionPluginsResponse = {
plugins: Plugin[]
total: number
}