@luminocity/lemonate-gateway 8.2.6 → 8.2.8

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/index.d.ts CHANGED
@@ -10353,6 +10353,60 @@ declare function getDatatypes(): ({
10353
10353
  type: string;
10354
10354
  }[];
10355
10355
  typeName: string;
10356
+ } | {
10357
+ displayName: string;
10358
+ fields: ({
10359
+ datatype: string;
10360
+ defaultValue: string;
10361
+ displayName: string;
10362
+ name: string;
10363
+ type: string;
10364
+ maxValue?: undefined;
10365
+ minValue?: undefined;
10366
+ widget?: undefined;
10367
+ info?: undefined;
10368
+ } | {
10369
+ datatype: string;
10370
+ defaultValue: boolean;
10371
+ displayName: string;
10372
+ name: string;
10373
+ type: string;
10374
+ maxValue?: undefined;
10375
+ minValue?: undefined;
10376
+ widget?: undefined;
10377
+ info?: undefined;
10378
+ } | {
10379
+ datatype: string;
10380
+ defaultValue: number;
10381
+ displayName: string;
10382
+ maxValue: number;
10383
+ minValue: number;
10384
+ name: string;
10385
+ type: string;
10386
+ widget: string;
10387
+ info?: undefined;
10388
+ } | {
10389
+ datatype: string;
10390
+ defaultValue: number;
10391
+ displayName: string;
10392
+ info: string;
10393
+ maxValue: number;
10394
+ minValue: number;
10395
+ name: string;
10396
+ type: string;
10397
+ widget: string;
10398
+ })[];
10399
+ inputs: {
10400
+ displayName: string;
10401
+ name: string;
10402
+ types: string[];
10403
+ }[];
10404
+ outputs: {
10405
+ displayName: string;
10406
+ name: string;
10407
+ type: string;
10408
+ }[];
10409
+ typeName: string;
10356
10410
  } | {
10357
10411
  displayName: string;
10358
10412
  fields: ({