@nocobase/client 1.6.0-alpha.26 → 1.6.0-alpha.27

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.
@@ -26,7 +26,7 @@ export declare const useCollectionManager_deprecated: (dataSourceName?: string)
26
26
  getInheritedFields: (name: string, customDataSource?: string) => import("../..").CollectionFieldOptions[];
27
27
  getCollectionField: (name: string, customDataSource?: string) => any;
28
28
  getCollectionFields: (name: any, customDataSource?: string) => CollectionFieldOptions_deprecated[];
29
- getCollectionFieldsOptions: (collectionName: string, type?: string | string[], opts?: {
29
+ getCollectionFieldsOptions: (collectionName: string, type?: string | string[], interfaces?: string | string[], opts?: {
30
30
  dataSource?: string;
31
31
  cached?: Record<string, any>;
32
32
  collectionNames?: string[];
@@ -25,6 +25,7 @@ export declare class CreatedAtFieldInterface extends CollectionFieldInterface {
25
25
  'x-read-pretty': boolean;
26
26
  };
27
27
  };
28
+ description: string;
28
29
  availableTypes: any[];
29
30
  properties: {
30
31
  'uiSchema.title': {
@@ -59,4 +59,5 @@ export declare class CreatedByFieldInterface extends CollectionFieldInterface {
59
59
  schemaInitialize(schema: ISchema, { block }: {
60
60
  block: string;
61
61
  }): void;
62
+ description: string;
62
63
  }
@@ -66,5 +66,6 @@ export declare class IdFieldInterface extends CollectionFieldInterface {
66
66
  selected?: undefined;
67
67
  })[];
68
68
  };
69
+ description: string;
69
70
  titleUsable: boolean;
70
71
  }
@@ -25,6 +25,7 @@ export declare class UpdatedAtFieldInterface extends CollectionFieldInterface {
25
25
  'x-read-pretty': boolean;
26
26
  };
27
27
  };
28
+ description: string;
28
29
  availableTypes: any[];
29
30
  properties: {
30
31
  'uiSchema.title': {
@@ -59,4 +59,5 @@ export declare class UpdatedByFieldInterface extends CollectionFieldInterface {
59
59
  schemaInitialize(schema: ISchema, { block }: {
60
60
  block: any;
61
61
  }): void;
62
+ description: string;
62
63
  }