@forestadmin/forestadmin-client 1.31.0 → 1.33.0
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.
- package/dist/schema/types.d.ts +3 -1
- package/package.json +2 -2
package/dist/schema/types.d.ts
CHANGED
|
@@ -41,6 +41,8 @@ export type ForestServerAction = {
|
|
|
41
41
|
download: boolean;
|
|
42
42
|
fields: ForestServerActionField[];
|
|
43
43
|
layout?: ForestServerActionFormLayoutElement[];
|
|
44
|
+
description?: string;
|
|
45
|
+
submitButtonLabel?: string;
|
|
44
46
|
hooks: {
|
|
45
47
|
load: boolean;
|
|
46
48
|
change: Array<unknown>;
|
|
@@ -243,6 +245,6 @@ export type ForestServerSegment = {
|
|
|
243
245
|
id: string;
|
|
244
246
|
name: string;
|
|
245
247
|
};
|
|
246
|
-
export type ValidationType = 'contains' | 'is after' | 'is before' | 'is greater than' | 'is less than' | 'is like' | 'is longer than' | 'is present' | 'is shorter than';
|
|
248
|
+
export type ValidationType = 'contains' | 'is after' | 'is before' | 'is greater than' | 'is greater than or equal to' | 'is less than' | 'is less than or equal to' | 'is like' | 'is longer than' | 'is present' | 'is shorter than';
|
|
247
249
|
export {};
|
|
248
250
|
//# sourceMappingURL=types.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forestadmin/forestadmin-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.33.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"test": "jest"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@forestadmin/datasource-toolkit": "1.
|
|
34
|
+
"@forestadmin/datasource-toolkit": "1.40.0",
|
|
35
35
|
"@types/json-api-serializer": "^2.6.3",
|
|
36
36
|
"@types/jsonwebtoken": "^9.0.1",
|
|
37
37
|
"@types/superagent": "^4.1.16"
|