@revenexx/integrations-node-sdk 0.15.0 → 0.17.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 +12 -0
- package/dist/index.d.ts +12 -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>;
|
|
@@ -180,6 +186,12 @@ interface INodeAuthorContext {
|
|
|
180
186
|
};
|
|
181
187
|
/** Preferred locale for resolved labels, when the caller supplies one. */
|
|
182
188
|
locale?: string;
|
|
189
|
+
/**
|
|
190
|
+
* The operator's type-to-search term for the option list being resolved.
|
|
191
|
+
* Only set for `loadOptions` calls. Providers may pass it to a server-side
|
|
192
|
+
* search endpoint or use it to filter the options they return.
|
|
193
|
+
*/
|
|
194
|
+
search?: string;
|
|
183
195
|
}
|
|
184
196
|
interface INode {
|
|
185
197
|
description: INodeDescription;
|
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>;
|
|
@@ -180,6 +186,12 @@ interface INodeAuthorContext {
|
|
|
180
186
|
};
|
|
181
187
|
/** Preferred locale for resolved labels, when the caller supplies one. */
|
|
182
188
|
locale?: string;
|
|
189
|
+
/**
|
|
190
|
+
* The operator's type-to-search term for the option list being resolved.
|
|
191
|
+
* Only set for `loadOptions` calls. Providers may pass it to a server-side
|
|
192
|
+
* search endpoint or use it to filter the options they return.
|
|
193
|
+
*/
|
|
194
|
+
search?: string;
|
|
183
195
|
}
|
|
184
196
|
interface INode {
|
|
185
197
|
description: INodeDescription;
|