@revenexx/integrations-node-sdk 0.15.0 → 0.16.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/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -113,6 +113,12 @@ interface INodeDescription {
|
|
|
113
113
|
name: LocalizedString;
|
|
114
114
|
description?: LocalizedString;
|
|
115
115
|
icon?: string;
|
|
116
|
+
/**
|
|
117
|
+
* Curated node-picker group path, outermost first (max 4 levels), e.g.
|
|
118
|
+
* `[{ en: 'Business Central' }, { en: 'Sales Orders' }]`. Optional —
|
|
119
|
+
* pickers without it fall back to package/category grouping.
|
|
120
|
+
*/
|
|
121
|
+
groups?: LocalizedString[];
|
|
116
122
|
/** Associated images (screenshots, logos, banners) shipped with the package. */
|
|
117
123
|
images?: IImage[];
|
|
118
124
|
inputs: Record<string, IInputPort>;
|
package/dist/index.d.ts
CHANGED
|
@@ -113,6 +113,12 @@ interface INodeDescription {
|
|
|
113
113
|
name: LocalizedString;
|
|
114
114
|
description?: LocalizedString;
|
|
115
115
|
icon?: string;
|
|
116
|
+
/**
|
|
117
|
+
* Curated node-picker group path, outermost first (max 4 levels), e.g.
|
|
118
|
+
* `[{ en: 'Business Central' }, { en: 'Sales Orders' }]`. Optional —
|
|
119
|
+
* pickers without it fall back to package/category grouping.
|
|
120
|
+
*/
|
|
121
|
+
groups?: LocalizedString[];
|
|
116
122
|
/** Associated images (screenshots, logos, banners) shipped with the package. */
|
|
117
123
|
images?: IImage[];
|
|
118
124
|
inputs: Record<string, IInputPort>;
|