fix filterhandlermeta

This commit is contained in:
AntoXa PRO 2024-03-28 15:02:24 +03:00
parent 6598067fb1
commit df317b438d
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "directus-helpers", "name": "directus-helpers",
"version": "1.0.2", "version": "1.0.3",
"description": "Helpers Directus Extensions", "description": "Helpers Directus Extensions",
"license": "ISC", "license": "ISC",
"author": "AntoXa PRO <info@antoxa.pro>", "author": "AntoXa PRO <info@antoxa.pro>",

View File

@ -1,6 +1,6 @@
import type { PrimaryKey } from '@directus/api/dist/types' import type { PrimaryKey } from '@directus/api/dist/types'
export type TFilterHandlerMeta = { export type TFilterHandlerMeta = Record<string, any> & {
event: string | 'items.create' | 'items.update', event: string | 'items.create' | 'items.update',
keys: PrimaryKey[] keys: PrimaryKey[]
collection: string collection: string