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.
Files changed (2) hide show
  1. package/dist/types.d.ts +4 -1
  2. 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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "3.75.0",
3
+ "version": "3.76.0",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",