@luminocity/lemonate-gateway 8.2.7 → 8.2.9
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 +55 -0
- package/dist/lemonate-gateway.cjs.js +5 -5
- package/dist/lemonate-gateway.cjs.js.map +1 -1
- package/dist/lemonate-gateway.esm.js +2 -2
- package/dist/lemonate-gateway.esm.js.map +1 -1
- package/dist/lemonate-gateway.umd.js +2 -2
- package/dist/lemonate-gateway.umd.js.map +1 -1
- package/package.json +1 -1
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: ({
|
|
@@ -12398,6 +12452,7 @@ declare class TemplateFactory {
|
|
|
12398
12452
|
private templatesByField;
|
|
12399
12453
|
private static _instance;
|
|
12400
12454
|
static get instance(): TemplateFactory;
|
|
12455
|
+
private _existsTemplate;
|
|
12401
12456
|
addTemplates(itemType: string, fieldName: string, templates: TemplateEntry$1[]): void;
|
|
12402
12457
|
getTemplate(itemType: string, fieldName: string, templateName: string): TemplateEntry$1 | undefined;
|
|
12403
12458
|
getTemplates(itemType: string, fieldName: string): TemplateEntry$1[];
|