@steedos-widgets/amis-lib 1.1.1 → 1.1.3-beta.10

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.
@@ -31,6 +31,7 @@ export function getSchema(uiSchema: any): {
31
31
  };
32
32
  actionType: string;
33
33
  data?: undefined;
34
+ expression?: undefined;
34
35
  } | {
35
36
  actionType: string;
36
37
  args: {
@@ -42,6 +43,19 @@ export function getSchema(uiSchema: any): {
42
43
  objectName: string;
43
44
  __deletedRecord: boolean;
44
45
  };
46
+ expression?: undefined;
47
+ } | {
48
+ actionType: string;
49
+ args: {
50
+ eventName: string;
51
+ api?: undefined;
52
+ messages?: undefined;
53
+ };
54
+ data: {
55
+ objectName: string;
56
+ __deletedRecord?: undefined;
57
+ };
58
+ expression: string;
45
59
  })[];
46
60
  };
47
61
  };
@@ -14,6 +14,7 @@ export function getSchema(uiSchema: any, ctx: any): Promise<{
14
14
  type: string;
15
15
  data: {
16
16
  $master: string;
17
+ _master: string;
17
18
  defaultData: string;
18
19
  appId: string;
19
20
  objectName: string;
@@ -17,6 +17,7 @@ export namespace StandardButtons {
17
17
  type: string;
18
18
  data: {
19
19
  $master: string;
20
+ _master: string;
20
21
  defaultData: string;
21
22
  appId: string;
22
23
  objectName: string;
@@ -136,6 +137,7 @@ export namespace StandardButtons {
136
137
  };
137
138
  actionType: string;
138
139
  data?: undefined;
140
+ expression?: undefined;
139
141
  } | {
140
142
  actionType: string;
141
143
  args: {
@@ -147,6 +149,19 @@ export namespace StandardButtons {
147
149
  objectName: string;
148
150
  __deletedRecord: boolean;
149
151
  };
152
+ expression?: undefined;
153
+ } | {
154
+ actionType: string;
155
+ args: {
156
+ eventName: string;
157
+ api?: undefined;
158
+ messages?: undefined;
159
+ };
160
+ data: {
161
+ objectName: string;
162
+ __deletedRecord?: undefined;
163
+ };
164
+ expression: string;
150
165
  })[];
151
166
  };
152
167
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "1.1.1",
4
+ "version": "1.1.3-beta.10",
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": "0e618339b9d23c8b90660bb3334db17637d324ab"
62
+ "gitHead": "069ada362ffb63551ab47e3e5d5a08faf974991c"
63
63
  }