@revenexx/integrations-node-sdk 0.16.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 +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -186,6 +186,12 @@ interface INodeAuthorContext {
|
|
|
186
186
|
};
|
|
187
187
|
/** Preferred locale for resolved labels, when the caller supplies one. */
|
|
188
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;
|
|
189
195
|
}
|
|
190
196
|
interface INode {
|
|
191
197
|
description: INodeDescription;
|
package/dist/index.d.ts
CHANGED
|
@@ -186,6 +186,12 @@ interface INodeAuthorContext {
|
|
|
186
186
|
};
|
|
187
187
|
/** Preferred locale for resolved labels, when the caller supplies one. */
|
|
188
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;
|
|
189
195
|
}
|
|
190
196
|
interface INode {
|
|
191
197
|
description: INodeDescription;
|