@directus/types
Advanced tools
Comparing version 10.1.1 to 10.1.2
@@ -66,3 +66,2 @@ import type { API_EXTENSION_TYPES, APP_EXTENSION_TYPES, BUNDLE_EXTENSION_TYPES, EXTENSION_TYPES, ExtensionManifest, ExtensionOptions, ExtensionOptionsBundleEntries, ExtensionOptionsBundleEntry, HYBRID_EXTENSION_TYPES, LOCAL_TYPES, NESTED_EXTENSION_TYPES, SplitEntrypoint } from '@directus/constants'; | ||
services: any; | ||
exceptions: any; | ||
database: Knex; | ||
@@ -69,0 +68,0 @@ env: Record<string, any>; |
export type FilterOperator = 'eq' | 'neq' | 'lt' | 'lte' | 'gt' | 'gte' | 'in' | 'nin' | 'null' | 'nnull' | 'contains' | 'ncontains' | 'icontains' | 'between' | 'nbetween' | 'empty' | 'nempty' | 'intersects' | 'nintersects' | 'intersects_bbox' | 'nintersects_bbox'; | ||
export type ClientFilterOperator = FilterOperator | 'starts_with' | 'nstarts_with' | 'ends_with' | 'nends_with' | 'regex'; | ||
export type ClientFilterOperator = FilterOperator | 'starts_with' | 'nstarts_with' | 'istarts_with' | 'nistarts_with' | 'ends_with' | 'nends_with' | 'iends_with' | 'niends_with' | 'regex'; | ||
export type Filter = LogicalFilter | FieldFilter; | ||
@@ -30,4 +30,8 @@ export type LogicalFilterOR = { | ||
_nstarts_with?: string; | ||
_istarts_with?: string; | ||
_nistarts_with?: string; | ||
_ends_with?: string; | ||
_nends_with?: string; | ||
_iends_with?: string; | ||
_niends_with?: string; | ||
_between?: (string | number)[]; | ||
@@ -34,0 +38,0 @@ _nbetween?: (string | number)[]; |
{ | ||
"name": "@directus/types", | ||
"version": "10.1.1", | ||
"version": "10.1.2", | ||
"description": "Shared types for Directus", | ||
@@ -5,0 +5,0 @@ "homepage": "https://directus.io", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32480
922