@forestadmin/datasource-customizer 1.43.4 → 1.43.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ import CollectionCustomizationContext from '../../context/collection-context';
3
3
  import { TCollectionName, TFieldName, TRow, TSchema } from '../../templates';
4
4
  export interface ComputedDefinition<S extends TSchema = TSchema, N extends TCollectionName<S> = TCollectionName<S>> {
5
5
  readonly columnType: ColumnType;
6
- readonly dependencies?: TFieldName<S, N>[];
6
+ readonly dependencies: TFieldName<S, N>[];
7
7
  readonly defaultValue?: unknown;
8
8
  readonly enumValues?: string[];
9
9
  getValues(records: TRow<S, N>[], context: CollectionCustomizationContext<S, N>): Promise<unknown[]> | unknown[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forestadmin/datasource-customizer",
3
- "version": "1.43.4",
3
+ "version": "1.43.5",
4
4
  "main": "dist/index.js",
5
5
  "license": "GPL-3.0",
6
6
  "publishConfig": {