feat: marketplace types
parent
0ef35a0ee0
commit
ae00211691
@ -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
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue