@luminocity/lemonate-gateway 8.3.2 → 8.3.3
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 +13 -0
- package/dist/lemonate-gateway.cjs.js +5 -5
- package/dist/lemonate-gateway.cjs.js.map +1 -1
- package/dist/lemonate-gateway.esm.js +5 -5
- package/dist/lemonate-gateway.esm.js.map +1 -1
- package/dist/lemonate-gateway.umd.js +1 -1
- package/dist/lemonate-gateway.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10118,6 +10118,7 @@ declare function getDatatypes(): ({
|
|
|
10118
10118
|
name: string;
|
|
10119
10119
|
type: string;
|
|
10120
10120
|
info?: undefined;
|
|
10121
|
+
options?: undefined;
|
|
10121
10122
|
widget?: undefined;
|
|
10122
10123
|
} | {
|
|
10123
10124
|
datatype: string;
|
|
@@ -10126,6 +10127,7 @@ declare function getDatatypes(): ({
|
|
|
10126
10127
|
info: string;
|
|
10127
10128
|
name: string;
|
|
10128
10129
|
type: string;
|
|
10130
|
+
options?: undefined;
|
|
10129
10131
|
widget?: undefined;
|
|
10130
10132
|
} | {
|
|
10131
10133
|
datatype: string;
|
|
@@ -10134,6 +10136,16 @@ declare function getDatatypes(): ({
|
|
|
10134
10136
|
info: string;
|
|
10135
10137
|
name: string;
|
|
10136
10138
|
type: string;
|
|
10139
|
+
options?: undefined;
|
|
10140
|
+
widget?: undefined;
|
|
10141
|
+
} | {
|
|
10142
|
+
datatype: string;
|
|
10143
|
+
defaultValue: string;
|
|
10144
|
+
displayName: string;
|
|
10145
|
+
name: string;
|
|
10146
|
+
options: string[];
|
|
10147
|
+
info: string;
|
|
10148
|
+
type: string;
|
|
10137
10149
|
widget?: undefined;
|
|
10138
10150
|
} | {
|
|
10139
10151
|
datatype: string;
|
|
@@ -10143,6 +10155,7 @@ declare function getDatatypes(): ({
|
|
|
10143
10155
|
name: string;
|
|
10144
10156
|
type: string;
|
|
10145
10157
|
widget: string;
|
|
10158
|
+
options?: undefined;
|
|
10146
10159
|
})[];
|
|
10147
10160
|
inputs: never[];
|
|
10148
10161
|
outputs: {
|