ugcinc 3.75.0 → 3.76.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/types.d.ts +4 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -796,7 +796,10 @@ export interface NodeOutputValues {
|
|
|
796
796
|
* Schema definition for a property within an array item
|
|
797
797
|
*/
|
|
798
798
|
export interface PropertySchema {
|
|
799
|
-
type: 'string' | 'number' | 'boolean' | 'object';
|
|
799
|
+
type: 'string' | 'number' | 'boolean' | 'object' | 'array';
|
|
800
|
+
/** For arrays - the item type */
|
|
801
|
+
items?: 'string' | 'number' | 'boolean' | 'object';
|
|
802
|
+
/** For nested objects or array of objects */
|
|
800
803
|
itemSchema?: Record<string, PropertySchema>;
|
|
801
804
|
}
|
|
802
805
|
export interface NodePort {
|