@steedos-widgets/amis-lib 6.10.25 → 6.10.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.
@@ -63,13 +63,22 @@ export function getViewSchema(objectName: any, recordId: any, ctx: any): Promise
63
63
  }>;
64
64
  export function getListSchema(appName: any, objectName: any, listViewName: any, ctx?: {}): Promise<{
65
65
  uiSchema?: undefined;
66
+ amisSchema?: undefined;
66
67
  isCustomAmisSchema?: undefined;
68
+ isCalendar?: undefined;
69
+ } | {
70
+ uiSchema: any;
67
71
  amisSchema?: undefined;
72
+ isCustomAmisSchema?: undefined;
68
73
  isCalendar?: undefined;
69
74
  } | {
70
75
  uiSchema: any;
76
+ amisSchema: {
77
+ type: string;
78
+ body: string;
79
+ level: string;
80
+ };
71
81
  isCustomAmisSchema?: undefined;
72
- amisSchema?: undefined;
73
82
  isCalendar?: undefined;
74
83
  } | {
75
84
  uiSchema: any;
@@ -368,13 +377,22 @@ export function getObjectRelated({ appName, masterObjectName, objectName, relate
368
377
  foreign_key: any;
369
378
  schema: {
370
379
  uiSchema?: undefined;
380
+ amisSchema?: undefined;
371
381
  isCustomAmisSchema?: undefined;
382
+ isCalendar?: undefined;
383
+ } | {
384
+ uiSchema: any;
372
385
  amisSchema?: undefined;
386
+ isCustomAmisSchema?: undefined;
373
387
  isCalendar?: undefined;
374
388
  } | {
375
389
  uiSchema: any;
390
+ amisSchema: {
391
+ type: string;
392
+ body: string;
393
+ level: string;
394
+ };
376
395
  isCustomAmisSchema?: undefined;
377
- amisSchema?: undefined;
378
396
  isCalendar?: undefined;
379
397
  } | {
380
398
  uiSchema: any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@steedos-widgets/amis-lib",
3
3
  "private": false,
4
- "version": "6.10.25",
4
+ "version": "6.10.27",
5
5
  "unpkg": "./dist/index.umd.js",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.esm.js",
@@ -60,5 +60,5 @@
60
60
  "i18next": "24.2.2",
61
61
  "lodash": "^4.17.21"
62
62
  },
63
- "gitHead": "0652b002b88b02662de1f64ef6d4bf93ffcf1ca7"
63
+ "gitHead": "f7462d40de26cac7dc35a6e3b3b828de55ee3edb"
64
64
  }