@steedos-widgets/amis-lib 1.2.8 → 1.2.9-beta.1

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.
@@ -18,5 +18,6 @@ export function getPermissionFields(object: any, userSession: any): any[];
18
18
  export function getSelectFieldOptions(field: any): any[];
19
19
  export function convertSFieldToAmisField(field: any, readonly: any, ctx: any): Promise<any>;
20
20
  export function getFieldSearchable(perField: any, permissionFields: any, ctx: any): Promise<any>;
21
+ export function isFieldTypeSearchable(fieldType: any): boolean;
21
22
  export const OMIT_FIELDS: string[];
22
23
  export { getAmisStaticFieldType } from "./type";
@@ -122,7 +122,9 @@ export function getObjectFieldsFilterBarSchema(objectSchema: any, ctx: any): Pro
122
122
  headers: {
123
123
  Authorization: string;
124
124
  };
125
- data: any;
125
+ data: {
126
+ $self: string;
127
+ };
126
128
  requestAdaptor: string;
127
129
  adaptor: string;
128
130
  };
@@ -255,7 +255,9 @@ export function getObjectListHeaderFieldsFilterBar(objectSchema: any, listViewNa
255
255
  headers: {
256
256
  Authorization: string;
257
257
  };
258
- data: any;
258
+ data: {
259
+ $self: string;
260
+ };
259
261
  requestAdaptor: string;
260
262
  adaptor: string;
261
263
  };
@@ -101,7 +101,9 @@ export function getObjectFilter(objectSchema: any, fields: any, options: any): P
101
101
  headers: {
102
102
  Authorization: string;
103
103
  };
104
- data: any;
104
+ data: {
105
+ $self: string;
106
+ };
105
107
  requestAdaptor: string;
106
108
  adaptor: string;
107
109
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "1.2.8",
4
+ "version": "1.2.9-beta.1",
5
5
  "unpkg": "./dist/index.umd.js",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",
@@ -59,5 +59,5 @@
59
59
  "dependencies": {
60
60
  "lodash": "^4.17.21"
61
61
  },
62
- "gitHead": "b985590e8f2b8f2f9f4dac303f1be8de9609a1e4"
62
+ "gitHead": "7c5d5103515ba1b5af49e8199e604363783c0e69"
63
63
  }